|
@@ -12,6 +12,7 @@ import cn.hutool.crypto.digest.HMac;
|
|
|
import cn.hutool.crypto.digest.MD5;
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
import com.tofly.common.core.entity.ResultRespone;
|
|
|
import com.tofly.scada.entity.Scada;
|
|
@@ -108,7 +109,24 @@ public class ScadaSynHisServiceImpl extends ServiceImpl<ScadaSynHisMapper, Scada
|
|
|
|
|
|
List<Long> collect = scadaSynHisList.stream().map(Scada::getId).collect(Collectors.toList());
|
|
|
if(collect.size()>0){
|
|
|
- baseMapper.updateBatchSynFlag(collect);
|
|
|
+ int size = collect.size();
|
|
|
+
|
|
|
+ int count = (int) Math.ceil((double) size / 1000d);
|
|
|
+ for (int i = 0; i < count; i++) {
|
|
|
+ int startIndex = i * 1000;
|
|
|
+ int endIndex = 1000 + i * 1000;
|
|
|
+ List<Long> subYhbhList;
|
|
|
+
|
|
|
+ if (i < count - 1) {
|
|
|
+
|
|
|
+ subYhbhList = collect.subList(startIndex, endIndex);
|
|
|
+ } else {
|
|
|
+
|
|
|
+ subYhbhList = collect.subList(startIndex, collect.size());
|
|
|
+ }
|
|
|
+ baseMapper.updateBatchSynFlag(subYhbhList);
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}else {
|
|
|
|