|
@@ -0,0 +1,54 @@
|
|
|
+package com.gyee.runeconomy.service.Irradiationinput;
|
|
|
+
|
|
|
+import com.gyee.common.contant.ContantXk;
|
|
|
+import com.gyee.common.model.PointData;
|
|
|
+import com.gyee.common.util.DateUtils;
|
|
|
+import com.gyee.runeconomy.init.CacheContext;
|
|
|
+import com.gyee.runeconomy.model.auto.ProBasicPowerstationPoint;
|
|
|
+import com.gyee.runeconomy.model.auto.ProEconIrradiationInput;
|
|
|
+import com.gyee.runeconomy.service.auto.IProEconIrradiationInputService;
|
|
|
+import com.gyee.runeconomy.util.realtimesource.IEdosUtil;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+import javax.annotation.Resource;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+
|
|
|
+@Service
|
|
|
+public class IrradiationinputService {
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private IProEconIrradiationInputService inputService;
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private IEdosUtil edosUtil;
|
|
|
+ public void getcockpit() throws Exception {
|
|
|
+
|
|
|
+ List<ProEconIrradiationInput> qwtList = inputService.list();
|
|
|
+ Date currentDate = DateUtils.getCurrentDate();
|
|
|
+ List<String> wpPoints = new ArrayList<>();
|
|
|
+ List<PointData> thls = new ArrayList<>();
|
|
|
+
|
|
|
+ if (!qwtList.isEmpty() || qwtList.size()>1) {
|
|
|
+ for (ProEconIrradiationInput lr : qwtList) {
|
|
|
+ Map<String, Map<String, ProBasicPowerstationPoint>> wppointmap = CacheContext.wppointmap;
|
|
|
+ Map<String, ProBasicPowerstationPoint> pointMap = wppointmap.get(lr.getWindpowerstationId()); //添加场站为需要被录入值的场站
|
|
|
+
|
|
|
+ if (pointMap.size() > 1 || !pointMap.isEmpty()) {
|
|
|
+
|
|
|
+ wpPoints.add(pointMap.get(ContantXk.GZYC).getNemCode());
|
|
|
+ List<PointData> realData = edosUtil.getHistMatrix(wpPoints, currentDate.getTime() / 1000);
|
|
|
+
|
|
|
+ for (PointData data : realData){
|
|
|
+ data.setEdnaId(lr.getNemCode()); //替换测点为被录入的测点
|
|
|
+ thls.add(data); //将测点及值放入list
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ edosUtil.sendMultiPoint(thls);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|