Browse Source

驾驶舱数据整改

master
PoffyZhang 10 months ago
parent
commit
cdc1c8f279
1 changed files with 20 additions and 18 deletions
  1. +20
    -18
      pmapi/src/main/java/com/ningdatech/pmapi/scheduler/task/CockpitStatsStatisticsTask.java

+ 20
- 18
pmapi/src/main/java/com/ningdatech/pmapi/scheduler/task/CockpitStatsStatisticsTask.java View File

@@ -312,24 +312,26 @@ public class CockpitStatsStatisticsTask {
//项目归集 评审信息
for (GovBizProjectApprove approve : approves){
String equalProtectionLevel = approve.getEqualProtectionLevel();
switch (equalProtectionLevel){
case "01":
guijiSecerecyGrade1++;
break;
case "02":
guijiSecerecyGrade2++;
break;
case "03":
guijiSecerecyGrade3++;
break;
case "04":
guijiSecerecyGrade4++;
break;
case "05":
guijiSecerecyGrade5++;
break;
default:
break;
if(StringUtils.isNotBlank(equalProtectionLevel)){
switch (equalProtectionLevel){
case "01":
guijiSecerecyGrade1++;
break;
case "02":
guijiSecerecyGrade2++;
break;
case "03":
guijiSecerecyGrade3++;
break;
case "04":
guijiSecerecyGrade4++;
break;
case "05":
guijiSecerecyGrade5++;
break;
default:
break;
}
}
}



Loading…
Cancel
Save