Synchronization code

This commit is contained in:
sunkaixuan
2023-06-20 11:06:53 +08:00
parent d5470e0986
commit d2a9e319ee
3 changed files with 19 additions and 0 deletions

View File

@@ -1302,6 +1302,13 @@ namespace SqlSugar
result = result.Where(y =>
y.Date >= begtinWeek&& y.Date <= endWeek).ToList();
}
else if (SplitType.Month_6 == type.SplitType)
{
var begtinWeek = beginTime.Month<=6?beginTime.ToString("yyyy-01-01"): beginTime.ToString("yyyy-06-01");
var endWeek = endTime.Month <= 6 ? endTime.ToString("yyyy-07-01") : endTime.ToString("yyyy-12-01");
result = result.Where(y =>
y.Date >= begtinWeek.ObjToDate() && y.Date <= endWeek.ObjToDate().AddMonths(1).AddDays(-1)).ToList();
}
else if (SplitType.Season == type.SplitType)
{

View File

@@ -102,6 +102,8 @@ namespace SqlSugar
break;
case SplitType.Year:
break;
case SplitType.Month_6:
break;
default:
throw new Exception("DateSplitTableService no support " + splitType.ToString());
}
@@ -222,6 +224,15 @@ namespace SqlSugar
}
case SplitType.Year:
return Convert.ToDateTime(time.ToString("yyyy-01-01"));
case SplitType.Month_6:
if (time.Month <= 6)
{
return Convert.ToDateTime(time.ToString("yyyy-01-01"));
}
else
{
return Convert.ToDateTime(time.ToString("yyyy-07-01"));
}
default:
throw new Exception($"SplitType parameter error ");
}

View File

@@ -11,6 +11,7 @@ namespace SqlSugar
Day = 0,
Week = 1,
Month = 2,
Month_6=1000,
Season = 3,
Year = 4,
_Custom01 = 5,