Commit d3e55fcc by hzc

修改记录报表四日志

parent 3487245e
...@@ -158,7 +158,7 @@ public class IndicatorsReportService { ...@@ -158,7 +158,7 @@ public class IndicatorsReportService {
* @Author hzc * @Author hzc
**/ **/
Map<String,Map<String,Integer>> rankMarkMap = new HashMap<>(); Map<String,Map<String,Integer>> rankMarkMap = new HashMap<>();
int fourCount=0;
for(String indId : indIds) { for(String indId : indIds) {
//报表四数据 //报表四数据
List<IndicatorsReportFour> indicatorsReportFours = new ArrayList<>(); List<IndicatorsReportFour> indicatorsReportFours = new ArrayList<>();
...@@ -352,11 +352,11 @@ public class IndicatorsReportService { ...@@ -352,11 +352,11 @@ public class IndicatorsReportService {
} }
//保存报表四数据 //保存报表四数据
if(indicatorsReportFours.size()>0){ if(indicatorsReportFours.size()>0){
log.info("保存报表四数据,条数:{}",indicatorsReportFours.size()); fourCount+=indicatorsReportFours.size();
indicatorsReportFourMapper.batchInsert(indicatorsReportFours); indicatorsReportFourMapper.batchInsert(indicatorsReportFours);
} }
} }
log.info("保存报表四数据,条数:{}",fourCount);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment