Bläddra i källkod

新增升压站数据查询接口(electrical/electricaltestingpoint)

tianye 2 år sedan
förälder
incheckning
65bd08f22b

+ 12 - 12
common/data/src/main/java/com/gyee/wisdom/common/data/alarm/ElectricalTestingPointAI.java

@@ -11,18 +11,18 @@ public class ElectricalTestingPointAI implements Serializable {
     private String code;
     private String name;
     private String model;
-    private String valueunit;
-    private String englishname;
-    private String typeid;
-    private String modelid;
-    private String maxval;
-    private String minval;
+    private String valueUnit;
+    private String englishName;
+    private String typeId;
+    private String modelId;
+    private String maxVal;
+    private String minVal;
     private String reasonablemaxval;
     private String reasonableminval;
-    private String electricalid;
-    private String uniformcode;
-    private String shortid;
-    private String longid;
-    private String windpowerstationid;
-    private String realtimeid;
+    private String electricalId;
+    private String uniformCode;
+    private String shortId;
+    private String longId;
+    private String windPowerStationId;
+    private String realtimeId;
 }

+ 13 - 12
common/data/src/main/java/com/gyee/wisdom/common/data/alarm/ElectricalTestingPointDI.java

@@ -6,22 +6,23 @@ import java.io.Serializable;
 @Data
 public class ElectricalTestingPointDI implements Serializable {
     private static final long serialVersionUID = -7009408032434108640L;
+
     private String id;
     private String code;
     private String name;
     private String model;
-    private String valueunit;
-    private String englishname;
-    private String typeid;
-    private String modelid;
-    private String maxval;
-    private String minval;
+    private String valueUnit;
+    private String englishName;
+    private String typeId;
+    private String modelId;
+    private String maxVal;
+    private String minVal;
     private String reasonablemaxval;
     private String reasonableminval;
-    private String electricalid;
-    private String uniformcode;
-    private String shortid;
-    private String longid;
-    private String windpowerstationid;
-    private String realtimeid;
+    private String electricalId;
+    private String uniformCode;
+    private String shortId;
+    private String longId;
+    private String windPowerStationId;
+    private String realtimeId;
 }

+ 16 - 16
dao/dao-sql/src/main/java/com/gyee/wisdom/dao/sql/alarm/Entity/ElectricalTestingPointAIEntity.java

@@ -17,7 +17,7 @@ import java.io.Serializable;
 @Data
 @Entity
 @NoArgsConstructor
-@Table(name="electricaltestingpointai2")
+@Table(name="electricaltestingpointai")
 public class ElectricalTestingPointAIEntity implements ToData<ElectricalTestingPointAI>, Serializable {
     @Id
     @Column(name = "id")
@@ -29,39 +29,39 @@ public class ElectricalTestingPointAIEntity implements ToData<ElectricalTestingP
     @Column(name = "model")
     private String model;
     @Column(name = "valueunit")
-    private String valueunit;
+    private String valueUnit;
     @Column(name = "englishname")
-    private String englishname;
+    private String englishName;
     @Column(name = "typeid")
-    private String typeid;
+    private String typeId;
     @Column(name = "modelid")
-    private String modelid;
+    private String modelId;
     @Column(name = "maxval")
-    private String maxval;
+    private String maxVal;
     @Column(name = "minval")
-    private String minval;
+    private String minVal;
     @Column(name = "reasonablemaxval")
     private String reasonablemaxval;
     @Column(name = "reasonableminval")
     private String reasonableminval;
     @Column(name = "electricalid")
-    private String electricalid;
+    private String electricalId;
     @Column(name = "uniformcode")
-    private String uniformcode;
+    private String uniformCode;
     @Column(name = "shortid")
-    private String shortid;
+    private String shortId;
     @Column(name = "longid")
-    private String longid;
+    private String longId;
     @Column(name = "windpowerstationid")
-    private String windpowerstationid;
+    private String windPowerStationId;
     @Column(name = "realtimeid")
-    private String realtimeid;
+    private String realtimeId;
 
     @Override
     public ElectricalTestingPointAI toData() {
-        ElectricalTestingPointAI ElectricalTestingPointAI = new ElectricalTestingPointAI();
-        BeanUtils.copyProperties(this,ElectricalTestingPointAI);
-        return ElectricalTestingPointAI;
+        ElectricalTestingPointAI electricalTestingPointAI = new ElectricalTestingPointAI();
+        BeanUtils.copyProperties(this,electricalTestingPointAI);
+        return electricalTestingPointAI;
     }
 
 }

+ 49 - 49
dao/dao-sql/src/main/java/com/gyee/wisdom/dao/sql/alarm/Entity/ElectricalTestingPointDIEntity.java

@@ -13,54 +13,54 @@ import javax.persistence.Table;
 import java.io.Serializable;
 
 
-    @Data
-    @Entity
-    @NoArgsConstructor
-    @Table(name="electricaltestingpointdi2")
-    public class ElectricalTestingPointDIEntity implements ToData<ElectricalTestingPointDI>, Serializable {
-        @Id
-        @Column(name = "id")
-        private String id;
-        @Column(name = "code")
-        private String code;
-        @Column(name = "name")
-        private String name;
-        @Column(name = "model")
-        private String model;
-        @Column(name = "valueunit")
-        private String valueunit;
-        @Column(name = "englishname")
-        private String englishname;
-        @Column(name = "typeid")
-        private String typeid;
-        @Column(name = "modelid")
-        private String modelid;
-        @Column(name = "maxval")
-        private String maxval;
-        @Column(name = "minval")
-        private String minval;
-        @Column(name = "reasonablemaxval")
-        private String reasonablemaxval;
-        @Column(name = "reasonableminval")
-        private String reasonableminval;
-        @Column(name = "electricalid")
-        private String electricalid;
-        @Column(name = "uniformcode")
-        private String uniformcode;
-        @Column(name = "shortid")
-        private String shortid;
-        @Column(name = "longid")
-        private String longid;
-        @Column(name = "windpowerstationid")
-        private String windpowerstationid;
-        @Column(name = "realtimeid")
-        private String realtimeid;
-
-        @Override
-        public ElectricalTestingPointDI toData() {
-            ElectricalTestingPointDI ElectricalTestingPointDI = new ElectricalTestingPointDI();
-            BeanUtils.copyProperties(this,ElectricalTestingPointDI);
-            return ElectricalTestingPointDI;
-        }
+@Data
+@Entity
+@NoArgsConstructor
+@Table(name = "electricaltestingpointdi")
+public class ElectricalTestingPointDIEntity implements ToData<ElectricalTestingPointDI>, Serializable {
+    @Id
+    @Column(name = "id")
+    private String id;
+    @Column(name = "code")
+    private String code;
+    @Column(name = "name")
+    private String name;
+    @Column(name = "model")
+    private String model;
+    @Column(name = "valueunit")
+    private String valueUnit;
+    @Column(name = "englishname")
+    private String englishName;
+    @Column(name = "typeid")
+    private String typeId;
+    @Column(name = "modelid")
+    private String modelId;
+    @Column(name = "maxval")
+    private String maxVal;
+    @Column(name = "minval")
+    private String minVal;
+    @Column(name = "reasonablemaxval")
+    private String reasonablemaxval;
+    @Column(name = "reasonableminval")
+    private String reasonableminval;
+    @Column(name = "electricalid")
+    private String electricalId;
+    @Column(name = "uniformcode")
+    private String uniformCode;
+    @Column(name = "shortid")
+    private String shortId;
+    @Column(name = "longid")
+    private String longId;
+    @Column(name = "windpowerstationid")
+    private String windPowerStationId;
+    @Column(name = "realtimeid")
+    private String realtimeId;
 
+    @Override
+    public ElectricalTestingPointDI toData() {
+        ElectricalTestingPointDI electricalTestingPointDI = new ElectricalTestingPointDI();
+        BeanUtils.copyProperties(this, electricalTestingPointDI);
+        return electricalTestingPointDI;
     }
+
+}

+ 2 - 2
dao/dao-sql/src/main/java/com/gyee/wisdom/dao/sql/alarm/JpaElectricalTestingPointAIDao.java

@@ -37,13 +37,13 @@ public class JpaElectricalTestingPointAIDao implements ElectricalTestingPointAID
 
                 List<Predicate> predicates = new ArrayList<>();
                 if (uniformcode != null && !uniformcode.trim().equals("")) {
-                    predicates.add(criteriaBuilder.like(root.get("uniformcode"), "%" + uniformcode + "%" ));
+                    predicates.add(criteriaBuilder.like(root.get("uniformCode"), "%" + uniformcode + "%" ));
                 }
                 if (name != null && !name.trim().equals("")) {
                     predicates.add(criteriaBuilder.like(root.get("name"),"%" + name + "%" ));
                 }
                 if (windpowerstationid != null && !windpowerstationid.trim().equals("")) {
-                    predicates.add(criteriaBuilder.equal(root.get("windpowerstationid"), windpowerstationid));
+                    predicates.add(criteriaBuilder.equal(root.get("windPowerStationId"), windpowerstationid));
                 }
                 return criteriaBuilder.and(predicates.toArray(new Predicate[predicates.size()]));
             }

+ 2 - 2
dao/dao-sql/src/main/java/com/gyee/wisdom/dao/sql/alarm/JpaElectricalTestingPointDIDao.java

@@ -35,13 +35,13 @@ public class JpaElectricalTestingPointDIDao implements ElectricalTestingPointDID
 
                 List<Predicate> predicates = new ArrayList<>();
                 if (uniformcode != null && !uniformcode.trim().equals("")) {
-                    predicates.add(criteriaBuilder.like(root.get("uniformcode"), "%" + uniformcode + "%" ));
+                    predicates.add(criteriaBuilder.like(root.get("uniformCode"), "%" + uniformcode + "%" ));
                 }
                 if (name != null && !name.trim().equals("")) {
                     predicates.add(criteriaBuilder.like(root.get("name"),"%" + name + "%" ));
                 }
                 if (windpowerstationid != null && !windpowerstationid.trim().equals("")) {
-                    predicates.add(criteriaBuilder.equal(root.get("windpowerstationid"), windpowerstationid));
+                    predicates.add(criteriaBuilder.equal(root.get("windPowerStationId"), windpowerstationid));
                 }
                 return criteriaBuilder.and(predicates.toArray(new Predicate[predicates.size()]));
             }

+ 1 - 1
dao/dao-sql/src/main/java/com/gyee/wisdom/dao/sql/alarm/repository/ElectricalTestingPointAIRepository.java

@@ -11,7 +11,7 @@ import java.util.List;
 
 @Repository
 public interface ElectricalTestingPointAIRepository extends JpaRepository<ElectricalTestingPointAIEntity, String>, JpaSpecificationExecutor {
-    List<ElectricalTestingPointAIEntity> findByUniformcodeAndNameAndWindpowerstationid(String uniformcode, String name, String windpowerstationid);
+    List<ElectricalTestingPointAIEntity> findByUniformCodeAndNameAndWindPowerStationId(String uniformcode, String name, String windpowerstationid);
 
 }
 

+ 0 - 3
dao/dao-sql/src/main/java/com/gyee/wisdom/dao/sql/alarm/repository/ElectricalTestingPointDIRepository.java

@@ -11,7 +11,4 @@ import java.util.List;
 @Repository
 public interface ElectricalTestingPointDIRepository extends JpaRepository<ElectricalTestingPointDIEntity, String>, JpaSpecificationExecutor {
     ElectricalTestingPointDIEntity findAllById(String id);
-    List<ElectricalTestingPointDIEntity> findByUniformcode(String id);
-    //
-    List<ElectricalTestingPointDIEntity> findAllByWindpowerstationid(String windpowerstationid);
 }

+ 60 - 59
dao/dao-taoscz/src/main/java/com/gyee/wisdom/dao/taoscz/TaosLatestDao.java

@@ -56,18 +56,18 @@ public class TaosLatestDao implements ILatestDao {
         Statement st = config.getInstance().createStatement();
         StringBuilder sb = new StringBuilder();
         sb.append("insert into ");
-        for (TsPointData obj : list){
+        for (TsPointData obj : list) {
             long time = obj.getTsData().getTs();
-            String point =config.getTableName(obj.getTagName()) ;
+            String point = config.getTableName(obj.getTagName());
             double value = obj.getTsData().getDoubleValue().get();
-           // sb.append(TaosCovertUtil.coverStationPrefix(point)).append(".");
+            // sb.append(TaosCovertUtil.coverStationPrefix(point)).append(".");
             sb.append(point).append(" values (");
             sb.append(time).append(",").append(value).append(")");
         }
 
         val i = st.executeUpdate(sb.toString());
 
-        return i==list.size()? list.size() : 0;
+        return i == list.size() ? list.size() : 0;
     }
 
     @Override
@@ -75,11 +75,11 @@ public class TaosLatestDao implements ILatestDao {
         Statement st = config.getInstance().createStatement();
         StringBuilder sb = new StringBuilder();
         sb.append("insert into ");
-        for (TsPointData obj : list){
+        for (TsPointData obj : list) {
             long time = obj.getTsData().getTs();
             String point = obj.getTagName();
             String value = obj.getTsData().getStringValue().get();
-           // sb.append(TaosCovertUtil.coverStationPrefix(point)).append(".");
+            // sb.append(TaosCovertUtil.coverStationPrefix(point)).append(".");
             sb.append(point).append(" values (");
             sb.append(time).append(",'").append(value).append("') ");
         }
@@ -93,11 +93,11 @@ public class TaosLatestDao implements ILatestDao {
         Statement st = config.getInstance().createStatement();
         StringBuilder sb = new StringBuilder();
         sb.append("insert into ");
-        for (TsPointData obj : list){
+        for (TsPointData obj : list) {
             long time = obj.getTsData().getTs();
             String point = obj.getTagName();
             boolean value = obj.getTsData().getBooleanValue().get();
-           // sb.append(TaosCovertUtil.coverStationPrefix(point)).append(".");
+            // sb.append(TaosCovertUtil.coverStationPrefix(point)).append(".");
             sb.append(point).append(" values (");
             sb.append(time).append(",").append(value).append(")");
         }
@@ -111,7 +111,7 @@ public class TaosLatestDao implements ILatestDao {
         Statement st = config.getInstance().createStatement();
         StringBuilder sb = new StringBuilder();
         sb.append("insert into ");
-        for (TsPointData obj : list){
+        for (TsPointData obj : list) {
             long time = obj.getTsData().getTs();
             String point = obj.getTagName();
             long value = obj.getTsData().getLongValue().get();
@@ -131,11 +131,12 @@ public class TaosLatestDao implements ILatestDao {
 
     @Override
     public int writeCoordinateLatest(List<TsPointData> list) throws Exception {
-            return 0;
+        return 0;
     }
 
     /**
      * 由于taos数据库中全部是DOUBLE类型,故不需要区分类型
+     *
      * @param dataList
      * @return
      * @throws Exception
@@ -147,32 +148,32 @@ public class TaosLatestDao implements ILatestDao {
         Map<TsDataType, List<TsPointData>> pointGroup = dataList.stream().collect(Collectors.groupingBy(TsPointData::findDataType));
         for (Map.Entry<TsDataType, List<TsPointData>> entry : pointGroup.entrySet()) {
             List<TsPointData> pointDataList = entry.getValue();
-//            if (entry.getKey() == TsDataType.DOUBLE) {
+            if (entry.getKey() == TsDataType.DOUBLE) {
                 int count = writeDoubleLatest(pointDataList);
                 writeCount = writeCount + count;
-//            } else if (entry.getKey() == TsDataType.BOOLEAN) {
-//                int count = writeBooleanLatest(pointDataList);
-//                writeCount = writeCount + count;
-//            } else if (entry.getKey() == TsDataType.STRING) {
-//                int count = writeStringLatest(pointDataList);
-//                writeCount = writeCount + count;
-//            } else if (entry.getKey() == TsDataType.BLOB) {
-//                int count = writeBlobLatest(pointDataList);
-//                writeCount = writeCount + count;
-//            } else if (entry.getKey() == TsDataType.COORDINATE) {
-//                int count = writeCoordinateLatest(pointDataList);
-//                writeCount = writeCount + count;
-//            } else if (entry.getKey() == TsDataType.LONG) {
-//                int count = writeLongLatest(pointDataList);
-//                writeCount = writeCount + count;
-//            }
+            } else if (entry.getKey() == TsDataType.BOOLEAN) {
+                int count = writeBooleanLatest(pointDataList);
+                writeCount = writeCount + count;
+            } else if (entry.getKey() == TsDataType.STRING) {
+                int count = writeStringLatest(pointDataList);
+                writeCount = writeCount + count;
+            } else if (entry.getKey() == TsDataType.BLOB) {
+                int count = writeBlobLatest(pointDataList);
+                writeCount = writeCount + count;
+            } else if (entry.getKey() == TsDataType.COORDINATE) {
+                int count = writeCoordinateLatest(pointDataList);
+                writeCount = writeCount + count;
+            } else if (entry.getKey() == TsDataType.LONG) {
+                int count = writeLongLatest(pointDataList);
+                writeCount = writeCount + count;
+            }
+            }
+            return writeCount > 0 ? true : false;
         }
-        return writeCount > 0 ? true : false;
-    }
 
-    public Map<String, TsData> getDoubleTsDataSnapshots(String... tagNames) throws Exception {
-        Map<String, TsData> tsDataMap = new HashMap<>();
-        Statement st = config.getInstance().createStatement();
+        public Map<String, TsData> getDoubleTsDataSnapshots (String...tagNames) throws Exception {
+            Map<String, TsData> tsDataMap = new HashMap<>();
+            Statement st = config.getInstance().createStatement();
 //        for (String tag : tagNames) {
 //            String tableName = config.getTableName(tag);
 //
@@ -181,39 +182,39 @@ public class TaosLatestDao implements ILatestDao {
 //                tsDataMap.put(tag, new DoubleTsData(rs.getTimestamp(1).getTime(), (short) 0, rs.getDouble(2)));
 //            }
 //        }
-         String inString = Arrays.stream(tagNames).map(s -> "'" + s + "'").collect(Collectors.joining(","));
-        ResultSet rs = st.executeQuery("select last_row(*) from by_fdc.windturbine  where point in ("+ inString+") group by tbname;");
+            String inString = Arrays.stream(tagNames).map(s -> "'" + s + "'").collect(Collectors.joining(","));
+            ResultSet rs = st.executeQuery("select last_row(*) from by_fdc.windturbine  where point in (" + inString + ") group by tbname;");
 
-        while (rs.next()){
-            tsDataMap.put(rs.getString(3).toUpperCase(), new DoubleTsData(rs.getTimestamp(1).getTime(), (short) 0, rs.getDouble(2)));
+            while (rs.next()) {
+                tsDataMap.put(rs.getString(3).toUpperCase(), new DoubleTsData(rs.getTimestamp(1).getTime(), (short) 0, rs.getDouble(2)));
+            }
+            return tsDataMap;
         }
-        return tsDataMap;
-    }
 
-    public Map<String, TsData> getLongTsDataSnapshots(String... tagNames) throws Exception {
-        Map<String, TsData> tsDataMap = new HashMap<>();
-        Statement st = config.getInstance().createStatement();
-        for (String tag : tagNames) {
-            String tableName = config.getTableName(tag);
-            ResultSet rs = st.executeQuery("select last_row(*) from " + tableName);
-            while (rs.next()) {
-                tsDataMap.put(tag, new LongTsData(rs.getTimestamp(1).getTime(), (short) 0, rs.getLong(2)));
+        public Map<String, TsData> getLongTsDataSnapshots (String...tagNames) throws Exception {
+            Map<String, TsData> tsDataMap = new HashMap<>();
+            Statement st = config.getInstance().createStatement();
+            for (String tag : tagNames) {
+                String tableName = config.getTableName(tag);
+                ResultSet rs = st.executeQuery("select last_row(*) from " + tableName);
+                while (rs.next()) {
+                    tsDataMap.put(tag, new LongTsData(rs.getTimestamp(1).getTime(), (short) 0, rs.getLong(2)));
+                }
             }
+            return tsDataMap;
         }
-        return tsDataMap;
-    }
 
-    public Map<String, TsData> getBooleanTsDataSnapshots(String... tagNames) throws Exception {
-        Map<String, TsData> tsDataMap = new HashMap<>();
-        Statement st = config.getInstance().createStatement();
-        for (String tag : tagNames) {
-            String tableName = config.getTableName(tag);
-            ResultSet rs = st.executeQuery("select last_row(*) from " + tableName);
-            while (rs.next()) {
-                tsDataMap.put(tag, new BooleanTsData(rs.getTimestamp(1).getTime(), (short) 0, rs.getBoolean(2)));
+        public Map<String, TsData> getBooleanTsDataSnapshots (String...tagNames) throws Exception {
+            Map<String, TsData> tsDataMap = new HashMap<>();
+            Statement st = config.getInstance().createStatement();
+            for (String tag : tagNames) {
+                String tableName = config.getTableName(tag);
+                ResultSet rs = st.executeQuery("select last_row(*) from " + tableName);
+                while (rs.next()) {
+                    tsDataMap.put(tag, new BooleanTsData(rs.getTimestamp(1).getTime(), (short) 0, rs.getBoolean(2)));
+                }
             }
+            return tsDataMap;
         }
-        return tsDataMap;
-    }
 
-}
+    }

+ 15 - 13
data-adapter/src/main/java/com/gyee/wisdom/dataadapter/controller/thing/ElectricalTestingPointController.java

@@ -1,7 +1,8 @@
 package com.gyee.wisdom.dataadapter.controller.thing;
 
 
-import com.gyee.wisdom.dataadapter.dto.ElectricalTest;
+import com.gyee.wisdom.common.utils.StringUtil;
+import com.gyee.wisdom.dataadapter.dto.ElectricalDto;
 import com.gyee.wisdom.dataadapter.domain.thing.ElectricalTestingPointService;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.*;
@@ -18,7 +19,7 @@ public class ElectricalTestingPointController {
 
 
     @GetMapping("/electricaltestingpoint")
-    public List<ElectricalTest> getElectricalTestingPoint(
+    public List<ElectricalDto> getElectricalTestingPoint(
 //            @RequestParam(value = "pagenum",required = true) Integer pageNum,
 //            @RequestParam(value = "pagesize",required = true) Integer pageSize,
             @RequestParam(value = "windpowerstationid", required = true) String windpowerstationid,
@@ -26,22 +27,23 @@ public class ElectricalTestingPointController {
             @RequestParam(value = "uniformcode", required = false) String uniformcode,
             @RequestParam(value = "type", required = false) String type
     ) {
-        List<ElectricalTest> list = new ArrayList<>();
-        if (type.equals("AI")){
-           list = electricalTestingPointService.queryByUniformcodeNameWindpowerstationidAI(uniformcode, name, windpowerstationid);
+        List<ElectricalDto> list = new ArrayList<>();
+        if (StringUtil.isBlank(type)){
+            list = electricalTestingPointService.getElectricalDtoAI(uniformcode, name, windpowerstationid);
+            List<ElectricalDto> list2 = electricalTestingPointService.getElectricalDtoDI(uniformcode, name, windpowerstationid);
+            list.addAll(list2);
         }
-
-        if(type.equals("DI")){
-           list = electricalTestingPointService.queryByUniformcodeNameWindpowerstationidDI(uniformcode, name, windpowerstationid);
-
+       else if (type.equals("AI")){
+           list = electricalTestingPointService.getElectricalDtoAI(uniformcode, name, windpowerstationid);
         }
+       else if(type.equals("DI")){
+           list = electricalTestingPointService.getElectricalDtoDI(uniformcode, name, windpowerstationid);
 
+        }
+       else{
 
-        if (type.equals("")){
-           list = electricalTestingPointService.queryByUniformcodeNameWindpowerstationidAI(uniformcode, name, windpowerstationid);
-           List<ElectricalTest> list2 = electricalTestingPointService.queryByUniformcodeNameWindpowerstationidDI(uniformcode, name, windpowerstationid);
-           list.addAll(list2);
         }
+
         return list;
 
     }

+ 21 - 21
data-adapter/src/main/java/com/gyee/wisdom/dataadapter/domain/thing/ElectricalTestingPointService.java

@@ -4,7 +4,7 @@ import com.gyee.wisdom.common.data.alarm.ElectricalTestingPointAI;
 import com.gyee.wisdom.common.data.alarm.ElectricalTestingPointDI;
 import com.gyee.wisdom.dao.alarm.ElectricalTestingPointAIDao;
 import com.gyee.wisdom.dao.alarm.ElectricalTestingPointDIDao;
-import com.gyee.wisdom.dataadapter.dto.ElectricalTest;
+import com.gyee.wisdom.dataadapter.dto.ElectricalDto;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 
@@ -15,37 +15,37 @@ import java.util.List;
 public class ElectricalTestingPointService {
 
     @Autowired
-    protected ElectricalTestingPointAIDao JpaElectricalTestingPointAIDao;
+    protected ElectricalTestingPointAIDao electricalTestingPointAIDao;
 
     @Autowired
-    protected ElectricalTestingPointDIDao JpaElectricalTestingPointDIDao;
+    protected ElectricalTestingPointDIDao electricalTestingPointDIDao;
 
 
     //uniformcode,name,windpowerstationid
-    public List<ElectricalTest>  queryByUniformcodeNameWindpowerstationidAI(String uniformcode, String name, String windpowerstationid){
-        List<ElectricalTest> list = new ArrayList<>();
-        List<ElectricalTestingPointAI> electricalTestingPointAIS = JpaElectricalTestingPointAIDao.findByUniformcodeNameWindpowerstationid(uniformcode,name,windpowerstationid);
+    public List<ElectricalDto>  getElectricalDtoAI(String uniformcode, String name, String windpowerstationid){
+        List<ElectricalDto> list = new ArrayList<>();
+        List<ElectricalTestingPointAI> electricalTestingPointAIS = electricalTestingPointAIDao.findByUniformcodeNameWindpowerstationid(uniformcode,name,windpowerstationid);
         for (ElectricalTestingPointAI ElectricalTestingPointAI : electricalTestingPointAIS){
-            ElectricalTest test = new ElectricalTest();
-            test.setId(ElectricalTestingPointAI.getId());
-            test.setName(ElectricalTestingPointAI.getName());
-            test.setUniformcode(ElectricalTestingPointAI.getUniformcode());
-            test.setWindpowerstationid(ElectricalTestingPointAI.getWindpowerstationid());
-            list.add(test);
+            ElectricalDto data = new ElectricalDto();
+            data.setId(ElectricalTestingPointAI.getId());
+            data.setName(ElectricalTestingPointAI.getName());
+            data.setUniformcode(ElectricalTestingPointAI.getUniformCode());
+            data.setWindpowerstationid(ElectricalTestingPointAI.getWindPowerStationId());
+            list.add(data);
         }
         return list;
     }
 
-    public List<ElectricalTest> queryByUniformcodeNameWindpowerstationidDI(String uniformcode,String name,String windpowerstationid) {
-        List<ElectricalTest> list = new ArrayList<>();
-        List<ElectricalTestingPointDI> electricalTestingPointDIS = JpaElectricalTestingPointDIDao.findByUniformcodeNameWindpowerstationid(uniformcode, name, windpowerstationid);
+    public List<ElectricalDto> getElectricalDtoDI(String uniformcode,String name,String windpowerstationid) {
+        List<ElectricalDto> list = new ArrayList<>();
+        List<ElectricalTestingPointDI> electricalTestingPointDIS = electricalTestingPointDIDao.findByUniformcodeNameWindpowerstationid(uniformcode, name, windpowerstationid);
         for (ElectricalTestingPointDI electricalTestingPointDI : electricalTestingPointDIS) {
-            ElectricalTest test = new ElectricalTest();
-            test.setId(electricalTestingPointDI.getId());
-            test.setName(electricalTestingPointDI.getName());
-            test.setUniformcode(electricalTestingPointDI.getUniformcode());
-            test.setWindpowerstationid(electricalTestingPointDI.getWindpowerstationid());
-            list.add(test);
+            ElectricalDto data = new ElectricalDto();
+            data.setId(electricalTestingPointDI.getId());
+            data.setName(electricalTestingPointDI.getName());
+            data.setUniformcode(electricalTestingPointDI.getUniformCode());
+            data.setWindpowerstationid(electricalTestingPointDI.getWindPowerStationId());
+            list.add(data);
         }
         return list;
     }

+ 3 - 6
data-adapter/src/main/java/com/gyee/wisdom/dataadapter/dto/ElectricalTest.java

@@ -3,18 +3,15 @@ package com.gyee.wisdom.dataadapter.dto;
 import lombok.Data;
 
 import javax.persistence.Column;
+import java.io.Serializable;
 
 @Data
-public class ElectricalTest {
+public class ElectricalDto implements Serializable {
 
-    //返回值类型(标签点名、场站ID、中文描述、统一编码)
-    @Column(name = "id")
+    //返回值类型(标签点名、场站ID、中文描述、统一编码)
     private String id;
-    @Column(name = "name")
     private String name;
-    @Column(name = "uniformcode")
     private String uniformcode;
-    @Column(name = "windpowerstationid")
     private String windpowerstationid;
 
 }

+ 46 - 36
data-adapter/src/main/java/com/gyee/wisdom/dataadapter/runner/SpringStartAfter.java

@@ -55,33 +55,30 @@ public class SpringStartAfter implements ApplicationRunner {
     @Override
     public void run(ApplicationArguments args) throws Exception {
 
-     // initDatabase("HNJ_FDC");
-
-//        Random r = new Random();
-//        Long ts = new Date().getTime();
-//        final List<TsPoint> allTsPoint = thingsPointDao.getAllTsPoint().stream().filter(s -> !s.getThingId().equals("BY_FDC")).collect(Collectors.toList());
-//        List<TsPointData> dataList = new ArrayList<>();
-//        for (TsPoint point :
-//                allTsPoint) {
-//            TsPointData tsPointData = new TsPointData();
-//            tsPointData.setTagName(point.getId());
-//            GeneralTsData generalTsData = new GeneralTsData();
-//            Double speed = r.nextDouble() * 6 + 3;
-//            generalTsData.setDoubleValue(java.util.Optional.of(speed));
-//            ts = ts + 1000;
-//            generalTsData.setTs(ts);
-//            tsPointData.setTsData(generalTsData);
-//            dataList.add(tsPointData);
-//        }
-//
-//
-//
-//
-//        while (true) {
-//            Thread.sleep(999);
-//            writeThread(dataList).run();
-//
-//        }
+        // initDatabase("HNJ_FDC");
+
+        Random r = new Random();
+        Long ts = new Date().getTime();
+        final List<TsPoint> allTsPoint = thingsPointDao.getAllTsPoint().stream().filter(s -> !s.getThingId().equals("BY_FDC")).collect(Collectors.toList());
+        List<TsPointData> dataList = new ArrayList<>();
+        for (TsPoint point :
+                allTsPoint) {
+            TsPointData tsPointData = new TsPointData();
+            tsPointData.setTagName(point.getId());
+            GeneralTsData generalTsData = new GeneralTsData();
+            Double speed = r.nextDouble() * 6 + 3;
+            generalTsData.setDoubleValue(java.util.Optional.of(speed));
+            ts = ts + 1000;
+            generalTsData.setTs(ts);
+            tsPointData.setTsData(generalTsData);
+            dataList.add(tsPointData);
+        }
+
+        while (true) {
+            Thread.sleep(999);
+            writeThread(dataList).run();
+
+        }
 
 
     }
@@ -96,12 +93,25 @@ public class SpringStartAfter implements ApplicationRunner {
                 Long ts = new Date().getTime();
                 for (TsPointData tsPointData :
                         list) {
+
+
                     GeneralTsData generalTsData = new GeneralTsData();
-                    Double speed = r.nextDouble() * 6 + 3;
-                    generalTsData.setDoubleValue(java.util.Optional.of(speed));
 
-                    generalTsData.setTs(ts);
-                    tsPointData.setTsData(generalTsData);
+                    if (tsPointData.getTagName().contains("_DI00")) {
+                        boolean speed = new Random().nextBoolean();
+                        generalTsData.setDoubleValue(java.util.Optional.of(speed ? 1.0 : 0.0));
+
+                        generalTsData.setTs(ts);
+                        tsPointData.setTsData(generalTsData);
+                    } else {
+                        Double speed = r.nextDouble() * 6 + 3;
+                        generalTsData.setDoubleValue(java.util.Optional.of(speed));
+
+                        generalTsData.setTs(ts);
+                        tsPointData.setTsData(generalTsData);
+                    }
+
+
                 }
                 boolean b = latestDao.writeLatest(list);
             }
@@ -116,11 +126,11 @@ public class SpringStartAfter implements ApplicationRunner {
             final List<Windturbine> windturbines = windturbineService.queryWindturbine(stationName, "MY-1500");
 
             log.error("查询风机完毕" + windturbines.size());
-           // Class.forName("com.taosdata.jdbc.TSDBDriver");
-           // String jdbcUrl = "jdbc:TAOS://" + serverIp + ":" + serverPort + "/" + dbName + "?user=" + userName + "&password=" + password;
+            // Class.forName("com.taosdata.jdbc.TSDBDriver");
+            // String jdbcUrl = "jdbc:TAOS://" + serverIp + ":" + serverPort + "/" + dbName + "?user=" + userName + "&password=" + password;
 
-           Class.forName("com.taosdata.jdbc.rs.RestfulDriver");
-           String jdbcUrl = "jdbc:TAOS-RS://" + serverIp + ":" + serverPort + "/" + dbName + "?user=" + userName + "&password=" + password;
+            Class.forName("com.taosdata.jdbc.rs.RestfulDriver");
+            String jdbcUrl = "jdbc:TAOS-RS://" + serverIp + ":" + serverPort + "/" + dbName + "?user=" + userName + "&password=" + password;
 
             Properties connProps = new Properties();
             connProps.setProperty("charset", "UTF-8");
@@ -137,7 +147,7 @@ public class SpringStartAfter implements ApplicationRunner {
             statement.executeUpdate(createSTableSql);
 
 
-            final List<TsPoint> allTsPoint = thingsPointDao.getAllTsPoint().stream().filter(s->s.getTsDataType()== TsDataType.BOOLEAN).collect(Collectors.toList());
+            final List<TsPoint> allTsPoint = thingsPointDao.getAllTsPoint().stream().filter(s -> s.getTsDataType() == TsDataType.BOOLEAN).collect(Collectors.toList());
 
             Date st = new Date();
             for (Windturbine data :