diff --git a/CompetitionAPI/CompetitionAPI/CompetitionAPI/Controllers/api/StorageController.cs b/CompetitionAPI/CompetitionAPI/CompetitionAPI/Controllers/api/StorageController.cs index 8d819ff..4edfa5d 100644 --- a/CompetitionAPI/CompetitionAPI/CompetitionAPI/Controllers/api/StorageController.cs +++ b/CompetitionAPI/CompetitionAPI/CompetitionAPI/Controllers/api/StorageController.cs @@ -171,13 +171,6 @@ namespace CompetitionAPI.Controllers.api dic[a.First().INSTRG_DATE.Value.Month]++; }); - //总数 - decimal yearNum = 0; - foreach (var item in dic) - { - yearNum += item.Value; - } - dic.Add(13, yearNum); return Json(Tool.GetJsonWithCode(APICode.Success, dic)); } @@ -210,14 +203,6 @@ namespace CompetitionAPI.Controllers.api dic[a.INSTRG_DATE.Value.Month] += a.BILL_GROSS_WT.Value; }); - //总数 - decimal yearNum = 0; - foreach (var item in dic) - { - yearNum += item.Value; - } - dic.Add(13, yearNum); - return Json(Tool.GetJsonWithCode(APICode.Success, dic)); }