diff --git a/APT.MicroApi/APT.PP.WebApi/Controllers/Api/BSController.cs b/APT.MicroApi/APT.PP.WebApi/Controllers/Api/BSController.cs index 1c66af8..8939b6c 100644 --- a/APT.MicroApi/APT.PP.WebApi/Controllers/Api/BSController.cs +++ b/APT.MicroApi/APT.PP.WebApi/Controllers/Api/BSController.cs @@ -155,7 +155,8 @@ namespace APT.PP.WebApi.Controllers.Api.PP { switch (listPlanSet[i].PLANCHECKFREQUENCY) { - case 5: + case 5://5 改成了60 + case 60: #region 单次检查 时间对 月 日对才加入 if (!string.IsNullOrEmpty(listPlanSet[i].RUNDATA))//05-01,10-01 @@ -229,13 +230,13 @@ namespace APT.PP.WebApi.Controllers.Api.PP listPlanSetRund.Add(listPlanSet[i]); } break; - case 60: - if (listPlanSet[i].DATA != null && listPlanSet[i].DATA.Value == dtNow.Day && dtNow.Month == 1) - { - //日匹配 (季度是季度第一月的某日 刚好也符合) - listPlanSetRund.Add(listPlanSet[i]); - } - break; + //case 60: + // if (listPlanSet[i].DATA != null && listPlanSet[i].DATA.Value == dtNow.Day && dtNow.Month == 1) + // { + // //日匹配 (季度是季度第一月的某日 刚好也符合) + // listPlanSetRund.Add(listPlanSet[i]); + // } + // break; default: break; }