Explorar el Código

添加新表格式

Koishi hace 1 año
padre
commit
c96fb5e071
Se han modificado 31 ficheros con 1460 adiciones y 3 borrados
  1. 41 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/controller/newfj/ProBasicEquipmentController.java
  2. 21 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/controller/newfj/ProBasicEquipmentPointController.java
  3. 21 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/controller/newfj/ProBasicPowerstationController.java
  4. 25 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/controller/newfj/ProBasicPowerstationPointController.java
  5. 21 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/controller/newfj/ProEconEquipmentmodelController.java
  6. 16 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/mapper/ProBasicEquipmentMapper.java
  7. 16 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/mapper/ProBasicEquipmentPointMapper.java
  8. 16 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/mapper/ProBasicPowerstationMapper.java
  9. 20 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/mapper/ProBasicPowerstationPointMapper.java
  10. 16 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/mapper/ProEconEquipmentmodelMapper.java
  11. 152 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/model/ProBasicEquipment.java
  12. 145 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/model/ProBasicEquipmentPoint.java
  13. 276 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/model/ProBasicPowerstation.java
  14. 139 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/model/ProBasicPowerstationPoint.java
  15. 120 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/model/ProEconEquipmentmodel.java
  16. 16 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/service/ProBasicEquipmentPointService.java
  17. 20 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/service/ProBasicEquipmentService.java
  18. 20 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/service/ProBasicPowerstationPointService.java
  19. 16 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/service/ProBasicPowerstationService.java
  20. 16 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/service/ProEconEquipmentmodelService.java
  21. 20 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/service/impl/ProBasicEquipmentPointServiceImpl.java
  22. 30 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/service/impl/ProBasicEquipmentServiceImpl.java
  23. 24 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/service/impl/ProBasicPowerstationPointServiceImpl.java
  24. 20 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/service/impl/ProBasicPowerstationServiceImpl.java
  25. 20 0
      power-fitting-JN/src/main/java/com.gyee.power.fitting/service/impl/ProEconEquipmentmodelServiceImpl.java
  26. 3 3
      power-fitting-JN/src/main/resources/application.yaml
  27. 40 0
      power-fitting-JN/src/main/resources/mapper/ProBasicEquipmentMapper.xml
  28. 37 0
      power-fitting-JN/src/main/resources/mapper/ProBasicEquipmentPointMapper.xml
  29. 66 0
      power-fitting-JN/src/main/resources/mapper/ProBasicPowerstationMapper.xml
  30. 35 0
      power-fitting-JN/src/main/resources/mapper/ProBasicPowerstationPointMapper.xml
  31. 32 0
      power-fitting-JN/src/main/resources/mapper/ProEconEquipmentmodelMapper.xml

+ 41 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/controller/newfj/ProBasicEquipmentController.java

@@ -0,0 +1,41 @@
+package com.gyee.power.fitting.controller.newfj;
+
+
+import com.alibaba.fastjson.JSONObject;
+import com.gyee.power.fitting.common.result.JsonResult;
+import com.gyee.power.fitting.common.result.ResultCode;
+import com.gyee.power.fitting.model.ProBasicEquipment;
+import com.gyee.power.fitting.service.ProBasicEquipmentService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.RequestMapping;
+
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.RestController;
+
+import java.util.List;
+
+/**
+ * <p>
+ * 风机&光伏 前端控制器
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+@RestController
+@RequestMapping("/proBasicEquipment")
+public class ProBasicEquipmentController {
+
+
+    @Autowired
+    private ProBasicEquipmentService proBasicEquipmentService;
+
+    @GetMapping("data")
+    public JSONObject getlist(@RequestParam(value = "ids",  required = false) String ids){
+        List<ProBasicEquipment> list = proBasicEquipmentService.getlist();
+        return JsonResult.successData(ResultCode.SUCCESS, list);
+    }
+
+}
+

+ 21 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/controller/newfj/ProBasicEquipmentPointController.java

@@ -0,0 +1,21 @@
+package com.gyee.power.fitting.controller.newfj;
+
+
+import org.springframework.web.bind.annotation.RequestMapping;
+
+import org.springframework.web.bind.annotation.RestController;
+
+/**
+ * <p>
+ * 设备测点 前端控制器
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+@RestController
+@RequestMapping("/proBasicEquipmentPoint")
+public class ProBasicEquipmentPointController {
+
+}
+

+ 21 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/controller/newfj/ProBasicPowerstationController.java

@@ -0,0 +1,21 @@
+package com.gyee.power.fitting.controller.newfj;
+
+
+import org.springframework.web.bind.annotation.RequestMapping;
+
+import org.springframework.web.bind.annotation.RestController;
+
+/**
+ * <p>
+ *  前端控制器
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+@RestController
+@RequestMapping("/proBasicPowerstation")
+public class ProBasicPowerstationController {
+
+}
+

+ 25 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/controller/newfj/ProBasicPowerstationPointController.java

@@ -0,0 +1,25 @@
+package com.gyee.power.fitting.controller.newfj;
+
+
+import org.springframework.web.bind.annotation.RequestMapping;
+
+import org.springframework.web.bind.annotation.RestController;
+
+/**
+ * <p>
+ * 场站测点,期次测点,线路测点,三级公司测点,区域测点
+
+
+
++方阵测点 前端控制器
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+@RestController
+@RequestMapping("/proBasicPowerstationPoint")
+public class ProBasicPowerstationPointController {
+
+}
+

+ 21 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/controller/newfj/ProEconEquipmentmodelController.java

@@ -0,0 +1,21 @@
+package com.gyee.power.fitting.controller.newfj;
+
+
+import org.springframework.web.bind.annotation.RequestMapping;
+
+import org.springframework.web.bind.annotation.RestController;
+
+/**
+ * <p>
+ *  前端控制器
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+@RestController
+@RequestMapping("/proEconEquipmentmodel")
+public class ProEconEquipmentmodelController {
+
+}
+

+ 16 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/mapper/ProBasicEquipmentMapper.java

@@ -0,0 +1,16 @@
+package com.gyee.power.fitting.mapper;
+
+import com.gyee.power.fitting.model.ProBasicEquipment;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+ * <p>
+ * 风机&光伏 Mapper 接口
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+public interface ProBasicEquipmentMapper extends BaseMapper<ProBasicEquipment> {
+
+}

+ 16 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/mapper/ProBasicEquipmentPointMapper.java

@@ -0,0 +1,16 @@
+package com.gyee.power.fitting.mapper;
+
+import com.gyee.power.fitting.model.ProBasicEquipmentPoint;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+ * <p>
+ * 设备测点 Mapper 接口
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+public interface ProBasicEquipmentPointMapper extends BaseMapper<ProBasicEquipmentPoint> {
+
+}

+ 16 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/mapper/ProBasicPowerstationMapper.java

@@ -0,0 +1,16 @@
+package com.gyee.power.fitting.mapper;
+
+import com.gyee.power.fitting.model.ProBasicPowerstation;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+ * <p>
+ *  Mapper 接口
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+public interface ProBasicPowerstationMapper extends BaseMapper<ProBasicPowerstation> {
+
+}

+ 20 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/mapper/ProBasicPowerstationPointMapper.java

@@ -0,0 +1,20 @@
+package com.gyee.power.fitting.mapper;
+
+import com.gyee.power.fitting.model.ProBasicPowerstationPoint;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+ * <p>
+ * 场站测点,期次测点,线路测点,三级公司测点,区域测点
+
+
+
++方阵测点 Mapper 接口
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+public interface ProBasicPowerstationPointMapper extends BaseMapper<ProBasicPowerstationPoint> {
+
+}

+ 16 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/mapper/ProEconEquipmentmodelMapper.java

@@ -0,0 +1,16 @@
+package com.gyee.power.fitting.mapper;
+
+import com.gyee.power.fitting.model.ProEconEquipmentmodel;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+ * <p>
+ *  Mapper 接口
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+public interface ProEconEquipmentmodelMapper extends BaseMapper<ProEconEquipmentmodel> {
+
+}

+ 152 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/model/ProBasicEquipment.java

@@ -0,0 +1,152 @@
+package com.gyee.power.fitting.model;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.extension.activerecord.Model;
+import java.time.LocalDate;
+import java.io.Serializable;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * <p>
+ * 风机&光伏
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+@Data
+@EqualsAndHashCode(callSuper = false)
+@TableName("pro_basic_equipment")
+public class ProBasicEquipment extends Model<ProBasicEquipment> {
+
+    private static final long serialVersionUID=1L;
+
+    /**
+     * 编号
+     */
+    private String id;
+
+    /**
+     * 编码
+     */
+    private String nemCode;
+
+    /**
+     * 场站编号(冗余)
+     */
+    private String windpowerstationId;
+
+    /**
+     * 地球经度
+     */
+    private String longitude;
+
+    /**
+     * 地球纬度
+     */
+    private String latitude;
+
+    /**
+     * 型号编号
+     */
+    private String modelId;
+
+    /**
+     * 状态
+     */
+    private String status;
+
+    /**
+     * 工程编号(冗余)
+     */
+    private String projectId;
+
+    /**
+     * 线路编号
+     */
+    private String lineId;
+
+    /**
+     * 首次并网时间
+     */
+    private LocalDate firstIntegratedTime;
+
+    /**
+     * 图片
+     */
+    private String photo;
+
+    /**
+     * 名称
+     */
+    private String name;
+
+    /**
+     * 别名
+     */
+    private String aname;
+
+    /**
+     * 是否是标杆设备
+     */
+    private Integer isStandard;
+
+    /**
+     * 区域编号
+     */
+    private String regionId;
+
+    /**
+     * 公司编号
+     */
+    private String companyId;
+
+    /**
+     * 是否可用
+     */
+    private Integer isable;
+
+    /**
+     * 1:陆地;2:海上;3:集中;4:组串
+     */
+    private Integer equipmentCategory;
+
+    private String parentId;
+
+    private String squareId;
+
+    /**
+     * 备用1
+     */
+    private String spare1;
+
+    /**
+     * 备用2
+     */
+    private String spare2;
+
+    /**
+     * 备用3
+     */
+    private String spare3;
+
+    /**
+     * 备用4
+     */
+    private String spare4;
+
+    /**
+     * 排序
+     */
+    private Integer orderNum;
+
+    private String substationId;
+
+
+    @Override
+    protected Serializable pkVal() {
+        return this.id;
+    }
+
+}

+ 145 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/model/ProBasicEquipmentPoint.java

@@ -0,0 +1,145 @@
+package com.gyee.power.fitting.model;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.extension.activerecord.Model;
+import java.io.Serializable;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * <p>
+ * 设备测点
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+@Data
+@EqualsAndHashCode(callSuper = false)
+@TableName("pro_basic_equipment_point")
+public class ProBasicEquipmentPoint extends Model<ProBasicEquipmentPoint> {
+
+    private static final long serialVersionUID=1L;
+
+    /**
+     * 编号
+     */
+    private String id;
+
+    /**
+     * 编码
+     */
+    private String nemCode;
+
+    /**
+     * 名称
+     */
+    private String name;
+
+    /**
+     * 实时库名称
+     */
+    private String aname;
+
+    /**
+     * 型号
+     */
+    private String model;
+
+    /**
+     * 单位
+     */
+    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 windturbineId;
+
+    /**
+     * 统一编码
+     */
+    private String uniformCode;
+
+    /**
+     * 短ID
+     */
+    private String shortId;
+
+    /**
+     * 长ID
+     */
+    private String longId;
+
+    /**
+     * 场站编号
+     */
+    private String windpowerstationId;
+
+    /**
+     * 实时配置编号
+     */
+    private String realtimeId;
+
+    /**
+     * 部件编号
+     */
+    private String logicalUnitId;
+
+    /**
+     * 集团测点编号
+     */
+    private String groupPointId;
+
+    /**
+     * 具体名称
+     */
+    private String specificName;
+
+    /**
+     * 系数
+     */
+    private String coefficient;
+
+
+    @Override
+    protected Serializable pkVal() {
+        return this.id;
+    }
+
+}

+ 276 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/model/ProBasicPowerstation.java

@@ -0,0 +1,276 @@
+package com.gyee.power.fitting.model;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.extension.activerecord.Model;
+import java.time.LocalDateTime;
+import java.io.Serializable;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * <p>
+ * 
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+@Data
+@EqualsAndHashCode(callSuper = false)
+@TableName("pro_basic_powerstation")
+public class ProBasicPowerstation extends Model<ProBasicPowerstation> {
+
+    private static final long serialVersionUID=1L;
+
+    /**
+     * 编号
+     */
+    private String id;
+
+    /**
+     * 编码
+     */
+    private String nemCode;
+
+    /**
+     * 名称
+     */
+    private String name;
+
+    /**
+     * 地址
+     */
+    private String address;
+
+    /**
+     * 电话
+     */
+    private String telephone;
+
+    /**
+     * 风电装机容量
+     */
+    private String windCapacity;
+
+    /**
+     * 风电容量单位
+     */
+    private String windCapacityUnit;
+
+    /**
+     * 风电装机数量海上
+     */
+    private Integer windQuantityHs;
+
+    /**
+     * 风电装机数量陆地
+     */
+    private Integer windQuantityLd;
+
+    /**
+     * 光伏装机容量
+     */
+    private String capacity;
+
+    /**
+     * 光伏容量单位
+     */
+    private String capacityUnit;
+
+    /**
+     * 光伏装机数量集中
+     */
+    private Integer quantityJz;
+
+    /**
+     * 光伏装机数量组串
+     */
+    private Integer quantityZc;
+
+    /**
+     * 接入风电装机容量
+     */
+    private String jrwindCapacity;
+
+    /**
+     * 接入风电容量单位
+     */
+    private String jrwindCapacityUnit;
+
+    /**
+     * 接入风电装机数量海上
+     */
+    private Integer jrwindQuantityHs;
+
+    /**
+     * 接入风电装机数量陆地
+     */
+    private Integer jrwindQuantityLd;
+
+    /**
+     * 接入光伏装机容量
+     */
+    private String jrCapacity;
+
+    /**
+     * 接入光伏容量单位
+     */
+    private String jrCapacityUnit;
+
+    /**
+     * 接入光伏装机数量集中
+     */
+    private Integer jrquantityJz;
+
+    /**
+     * 接入光伏装机数量组串
+     */
+    private Integer jrquantityZc;
+
+    /**
+     * 别名
+     */
+    private String aname;
+
+    /**
+     * 地球经度
+     */
+    private String longitude;
+
+    /**
+     * 地球纬度
+     */
+    private String latitude;
+
+    /**
+     * 图片
+     */
+    private String photo;
+
+    /**
+     * 系统厂家
+     */
+    private String systemManufact;
+
+    /**
+     * 场长
+     */
+    private String headfarm;
+
+    /**
+     * 场长电话
+     */
+    private String headfarmPhone;
+
+    /**
+     * 机型
+     */
+    private String model;
+
+    /**
+     * 顺序
+     */
+    private Integer orderNum;
+
+    /**
+     * 海拔高度
+     */
+    private String height;
+
+    /**
+     * 场站类型(-1为风电)(-2为光伏)
+     */
+    private String windType;
+
+    /**
+     * 公司编号
+     */
+    private String companyId;
+
+    /**
+     * 区域编号
+     */
+    private String regionId;
+
+    /**
+     * 集团编号
+     */
+    private String groupId;
+
+    /**
+     * 是否可用(0是待建)(1是投产)(0是不参与计算)(1是参与计算)
+     */
+    private Integer isAble;
+
+    /**
+     * 备用1
+     */
+    private String spare1;
+
+    /**
+     * 备用2
+     */
+    private String spare2;
+
+    /**
+     * 备用3
+     */
+    private String spare3;
+
+    /**
+     * 备用4
+     */
+    private String spare4;
+
+    /**
+     * 核准容量
+     */
+    private String appCapacity;
+
+    /**
+     * 在建容量
+     */
+    private String conCapacity;
+
+    /**
+     * 并网容量
+     */
+    private String gridCapacity;
+
+    private String hoiCapacity;
+
+    /**
+     * 首批并网时间
+     */
+    private LocalDateTime firstGridTime;
+
+    /**
+     * 整场投运时间
+     */
+    private LocalDateTime wholeGridTime;
+
+    /**
+     * 测风塔数量
+     */
+    private Integer anemoNumber;
+
+    /**
+     * 升压站数量
+     */
+    private Integer stationNumber;
+
+    private Integer xPoint;
+
+    private Integer yPoint;
+
+    private Integer xEmPoint;
+
+    private Integer yEmPoint;
+
+
+    @Override
+    protected Serializable pkVal() {
+        return this.id;
+    }
+
+}

+ 139 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/model/ProBasicPowerstationPoint.java

@@ -0,0 +1,139 @@
+package com.gyee.power.fitting.model;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.extension.activerecord.Model;
+import java.io.Serializable;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * <p>
+ * 场站测点,期次测点,线路测点,三级公司测点,区域测点
+
+
+
++方阵测点
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+@Data
+@EqualsAndHashCode(callSuper = false)
+@TableName("pro_basic_powerstation_point")
+public class ProBasicPowerstationPoint extends Model<ProBasicPowerstationPoint> {
+
+    private static final long serialVersionUID=1L;
+
+    /**
+     * 编号
+     */
+    private String id;
+
+    /**
+     * 编码
+     */
+    private String nemCode;
+
+    /**
+     * 名称
+     */
+    private String name;
+
+    /**
+     * 实时库名称
+     */
+    private String aname;
+
+    /**
+     * 型号
+     */
+    private String model;
+
+    /**
+     * 单位
+     */
+    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 uniformCode;
+
+    /**
+     * 短ID
+     */
+    private String shortId;
+
+    /**
+     * 长ID
+     */
+    private String longId;
+
+    /**
+     * 场站编号
+     */
+    private String windpowerstationId;
+
+    /**
+     * 实时配置编号
+     */
+    private String realtimeId;
+
+    /**
+     * 集团测点编号
+     */
+    private String groupPointId;
+
+    /**
+     * 具体名称
+     */
+    private String specificName;
+
+    /**
+     * 系数
+     */
+    private String coefficient;
+
+
+    @Override
+    protected Serializable pkVal() {
+        return this.id;
+    }
+
+}

+ 120 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/model/ProEconEquipmentmodel.java

@@ -0,0 +1,120 @@
+package com.gyee.power.fitting.model;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.extension.activerecord.Model;
+import java.io.Serializable;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * <p>
+ * 
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+@Data
+@EqualsAndHashCode(callSuper = false)
+@TableName("pro_econ_equipmentmodel")
+public class ProEconEquipmentmodel extends Model<ProEconEquipmentmodel> {
+
+    private static final long serialVersionUID=1L;
+
+    /**
+     * 编号
+     */
+    private String id;
+
+    /**
+     * 编码
+     */
+    private String nemCode;
+
+    /**
+     * 名称
+     */
+    private String name;
+
+    /**
+     * 别名
+     */
+    private String aname;
+
+    /**
+     * 描述
+     */
+    private String description;
+
+    /**
+     * 容量
+     */
+    private String powerProduction;
+
+    /**
+     * 厂商编号
+     */
+    private String windturbineManufacturerId;
+
+    /**
+     * 图片
+     */
+    private String photo;
+
+    /**
+     * 传输总发电量单位
+     */
+    private String unit;
+
+    /**
+     * 切入风速
+     */
+    private String cutinwindSpeed;
+
+    /**
+     * 额定风速
+     */
+    private String ratedwindSpeed;
+
+    /**
+     * 切出风速
+     */
+    private String cutoutwindSpeed;
+
+    /**
+     * 叶片切入面积
+     */
+    private String sweptArea;
+
+    /**
+     * 设备类别
+     */
+    private String equipmentCategory;
+
+    /**
+     * 备用1
+     */
+    private String spare1;
+
+    /**
+     * 备用1
+     */
+    private String spare2;
+
+    /**
+     * 备用3
+     */
+    private String spare3;
+
+    /**
+     * 备用4
+     */
+    private String spare4;
+
+
+    @Override
+    protected Serializable pkVal() {
+        return this.id;
+    }
+
+}

+ 16 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/service/ProBasicEquipmentPointService.java

@@ -0,0 +1,16 @@
+package com.gyee.power.fitting.service;
+
+import com.gyee.power.fitting.model.ProBasicEquipmentPoint;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ * <p>
+ * 设备测点 服务类
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+public interface ProBasicEquipmentPointService extends IService<ProBasicEquipmentPoint> {
+
+}

+ 20 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/service/ProBasicEquipmentService.java

@@ -0,0 +1,20 @@
+package com.gyee.power.fitting.service;
+
+import com.gyee.power.fitting.model.ProBasicEquipment;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+import java.util.List;
+
+/**
+ * <p>
+ * 风机&光伏 服务类
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+public interface ProBasicEquipmentService extends IService<ProBasicEquipment> {
+
+
+    List<ProBasicEquipment> getlist();
+}

+ 20 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/service/ProBasicPowerstationPointService.java

@@ -0,0 +1,20 @@
+package com.gyee.power.fitting.service;
+
+import com.gyee.power.fitting.model.ProBasicPowerstationPoint;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ * <p>
+ * 场站测点,期次测点,线路测点,三级公司测点,区域测点
+
+
+
++方阵测点 服务类
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+public interface ProBasicPowerstationPointService extends IService<ProBasicPowerstationPoint> {
+
+}

+ 16 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/service/ProBasicPowerstationService.java

@@ -0,0 +1,16 @@
+package com.gyee.power.fitting.service;
+
+import com.gyee.power.fitting.model.ProBasicPowerstation;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ * <p>
+ *  服务类
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+public interface ProBasicPowerstationService extends IService<ProBasicPowerstation> {
+
+}

+ 16 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/service/ProEconEquipmentmodelService.java

@@ -0,0 +1,16 @@
+package com.gyee.power.fitting.service;
+
+import com.gyee.power.fitting.model.ProEconEquipmentmodel;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ * <p>
+ *  服务类
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+public interface ProEconEquipmentmodelService extends IService<ProEconEquipmentmodel> {
+
+}

+ 20 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/service/impl/ProBasicEquipmentPointServiceImpl.java

@@ -0,0 +1,20 @@
+package com.gyee.power.fitting.service.impl;
+
+import com.gyee.power.fitting.model.ProBasicEquipmentPoint;
+import com.gyee.power.fitting.mapper.ProBasicEquipmentPointMapper;
+import com.gyee.power.fitting.service.ProBasicEquipmentPointService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+
+/**
+ * <p>
+ * 设备测点 服务实现类
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+@Service
+public class ProBasicEquipmentPointServiceImpl extends ServiceImpl<ProBasicEquipmentPointMapper, ProBasicEquipmentPoint> implements ProBasicEquipmentPointService {
+
+}

+ 30 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/service/impl/ProBasicEquipmentServiceImpl.java

@@ -0,0 +1,30 @@
+package com.gyee.power.fitting.service.impl;
+
+import com.gyee.power.fitting.common.base.ExcludeQueryWrapper;
+import com.gyee.power.fitting.model.ProBasicEquipment;
+import com.gyee.power.fitting.mapper.ProBasicEquipmentMapper;
+import com.gyee.power.fitting.service.ProBasicEquipmentService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+
+import java.util.List;
+
+/**
+ * <p>
+ * 风机&光伏 服务实现类
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+@Service
+public class ProBasicEquipmentServiceImpl extends ServiceImpl<ProBasicEquipmentMapper, ProBasicEquipment> implements ProBasicEquipmentService {
+
+    @Override
+    public List<ProBasicEquipment> getlist() {
+        ExcludeQueryWrapper wrapper = new ExcludeQueryWrapper();
+        wrapper.eq("windpowerstation_id", "SXJ_KGDL_HSM_FDC_STA");
+        List<ProBasicEquipment> list = baseMapper.selectList(wrapper);
+        return list;
+    }
+}

+ 24 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/service/impl/ProBasicPowerstationPointServiceImpl.java

@@ -0,0 +1,24 @@
+package com.gyee.power.fitting.service.impl;
+
+import com.gyee.power.fitting.model.ProBasicPowerstationPoint;
+import com.gyee.power.fitting.mapper.ProBasicPowerstationPointMapper;
+import com.gyee.power.fitting.service.ProBasicPowerstationPointService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+
+/**
+ * <p>
+ * 场站测点,期次测点,线路测点,三级公司测点,区域测点
+
+
+
++方阵测点 服务实现类
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+@Service
+public class ProBasicPowerstationPointServiceImpl extends ServiceImpl<ProBasicPowerstationPointMapper, ProBasicPowerstationPoint> implements ProBasicPowerstationPointService {
+
+}

+ 20 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/service/impl/ProBasicPowerstationServiceImpl.java

@@ -0,0 +1,20 @@
+package com.gyee.power.fitting.service.impl;
+
+import com.gyee.power.fitting.model.ProBasicPowerstation;
+import com.gyee.power.fitting.mapper.ProBasicPowerstationMapper;
+import com.gyee.power.fitting.service.ProBasicPowerstationService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+
+/**
+ * <p>
+ *  服务实现类
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+@Service
+public class ProBasicPowerstationServiceImpl extends ServiceImpl<ProBasicPowerstationMapper, ProBasicPowerstation> implements ProBasicPowerstationService {
+
+}

+ 20 - 0
power-fitting-JN/src/main/java/com.gyee.power.fitting/service/impl/ProEconEquipmentmodelServiceImpl.java

@@ -0,0 +1,20 @@
+package com.gyee.power.fitting.service.impl;
+
+import com.gyee.power.fitting.model.ProEconEquipmentmodel;
+import com.gyee.power.fitting.mapper.ProEconEquipmentmodelMapper;
+import com.gyee.power.fitting.service.ProEconEquipmentmodelService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+
+/**
+ * <p>
+ *  服务实现类
+ * </p>
+ *
+ * @author chenmh
+ * @since 2023-09-22
+ */
+@Service
+public class ProEconEquipmentmodelServiceImpl extends ServiceImpl<ProEconEquipmentmodelMapper, ProEconEquipmentmodel> implements ProEconEquipmentmodelService {
+
+}

+ 3 - 3
power-fitting-JN/src/main/resources/application.yaml

@@ -1,6 +1,6 @@
 gyee:
   # 实时适配器的url
-  adapter-url: http://10.155.32.4:8011
+  adapter-url: http://10.81.3.152:8098
   # 数据准备保存路径(原始数据)
   file-path-prepare: data/prepare/
   # 数据处理保存路径(处理后的数据)
@@ -38,8 +38,8 @@ spring:
   datasource:
     type: com.alibaba.druid.pool.DruidDataSource
     # 宁夏三区oracle
-    url: jdbc:postgresql://10.81.3.151:5432/wisdom
-    username: gdprod
+    url: jdbc:postgresql://10.81.3.151:5432/IMS_NEM_JN
+    username: postgres
     password: gd123
     driver-class-name: org.postgresql.Driver
 

+ 40 - 0
power-fitting-JN/src/main/resources/mapper/ProBasicEquipmentMapper.xml

@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.gyee.power.fitting.mapper.ProBasicEquipmentMapper">
+
+    <!-- 通用查询映射结果 -->
+    <resultMap id="BaseResultMap" type="com.gyee.power.fitting.model.ProBasicEquipment">
+        <id column="id" property="id" />
+        <result column="nem_code" property="nemCode" />
+        <result column="windpowerstation_id" property="windpowerstationId" />
+        <result column="longitude" property="longitude" />
+        <result column="latitude" property="latitude" />
+        <result column="model_id" property="modelId" />
+        <result column="status" property="status" />
+        <result column="project_id" property="projectId" />
+        <result column="line_id" property="lineId" />
+        <result column="first_integrated_time" property="firstIntegratedTime" />
+        <result column="photo" property="photo" />
+        <result column="name" property="name" />
+        <result column="aname" property="aname" />
+        <result column="is_standard" property="isStandard" />
+        <result column="region_id" property="regionId" />
+        <result column="company_id" property="companyId" />
+        <result column="isable" property="isable" />
+        <result column="equipment_category" property="equipmentCategory" />
+        <result column="parent_id" property="parentId" />
+        <result column="square_id" property="squareId" />
+        <result column="spare1" property="spare1" />
+        <result column="spare2" property="spare2" />
+        <result column="spare3" property="spare3" />
+        <result column="spare4" property="spare4" />
+        <result column="order_num" property="orderNum" />
+        <result column="substation_id" property="substationId" />
+    </resultMap>
+
+    <!-- 通用查询结果列 -->
+    <sql id="Base_Column_List">
+        id, nem_code, windpowerstation_id, longitude, latitude, model_id, status, project_id, line_id, first_integrated_time, photo, name, aname, is_standard, region_id, company_id, isable, equipment_category, parent_id, square_id, spare1, spare2, spare3, spare4, order_num, substation_id
+    </sql>
+
+</mapper>

+ 37 - 0
power-fitting-JN/src/main/resources/mapper/ProBasicEquipmentPointMapper.xml

@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.gyee.power.fitting.mapper.ProBasicEquipmentPointMapper">
+
+    <!-- 通用查询映射结果 -->
+    <resultMap id="BaseResultMap" type="com.gyee.power.fitting.model.ProBasicEquipmentPoint">
+        <id column="id" property="id" />
+        <result column="nem_code" property="nemCode" />
+        <result column="name" property="name" />
+        <result column="aname" property="aname" />
+        <result column="model" property="model" />
+        <result column="value_unit" property="valueUnit" />
+        <result column="english_name" property="englishName" />
+        <result column="type_id" property="typeId" />
+        <result column="model_id" property="modelId" />
+        <result column="maxval" property="maxval" />
+        <result column="minval" property="minval" />
+        <result column="reasonable_maxval" property="reasonableMaxval" />
+        <result column="reasonable_minval" property="reasonableMinval" />
+        <result column="windturbine_id" property="windturbineId" />
+        <result column="uniform_code" property="uniformCode" />
+        <result column="short_id" property="shortId" />
+        <result column="long_id" property="longId" />
+        <result column="windpowerstation_id" property="windpowerstationId" />
+        <result column="realtime_id" property="realtimeId" />
+        <result column="logical_unit_id" property="logicalUnitId" />
+        <result column="group_point_id" property="groupPointId" />
+        <result column="specific_name" property="specificName" />
+        <result column="coefficient" property="coefficient" />
+    </resultMap>
+
+    <!-- 通用查询结果列 -->
+    <sql id="Base_Column_List">
+        id, nem_code, name, aname, model, value_unit, english_name, type_id, model_id, maxval, minval, reasonable_maxval, reasonable_minval, windturbine_id, uniform_code, short_id, long_id, windpowerstation_id, realtime_id, logical_unit_id, group_point_id, specific_name, coefficient
+    </sql>
+
+</mapper>

La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 66 - 0
power-fitting-JN/src/main/resources/mapper/ProBasicPowerstationMapper.xml


+ 35 - 0
power-fitting-JN/src/main/resources/mapper/ProBasicPowerstationPointMapper.xml

@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.gyee.power.fitting.mapper.ProBasicPowerstationPointMapper">
+
+    <!-- 通用查询映射结果 -->
+    <resultMap id="BaseResultMap" type="com.gyee.power.fitting.model.ProBasicPowerstationPoint">
+        <id column="id" property="id" />
+        <result column="nem_code" property="nemCode" />
+        <result column="name" property="name" />
+        <result column="aname" property="aname" />
+        <result column="model" property="model" />
+        <result column="value_unit" property="valueUnit" />
+        <result column="english_name" property="englishName" />
+        <result column="type_id" property="typeId" />
+        <result column="model_id" property="modelId" />
+        <result column="maxval" property="maxval" />
+        <result column="minval" property="minval" />
+        <result column="reasonable_maxval" property="reasonableMaxval" />
+        <result column="reasonable_minval" property="reasonableMinval" />
+        <result column="uniform_code" property="uniformCode" />
+        <result column="short_id" property="shortId" />
+        <result column="long_id" property="longId" />
+        <result column="windpowerstation_id" property="windpowerstationId" />
+        <result column="realtime_id" property="realtimeId" />
+        <result column="group_point_id" property="groupPointId" />
+        <result column="specific_name" property="specificName" />
+        <result column="coefficient" property="coefficient" />
+    </resultMap>
+
+    <!-- 通用查询结果列 -->
+    <sql id="Base_Column_List">
+        id, nem_code, name, aname, model, value_unit, english_name, type_id, model_id, maxval, minval, reasonable_maxval, reasonable_minval, uniform_code, short_id, long_id, windpowerstation_id, realtime_id, group_point_id, specific_name, coefficient
+    </sql>
+
+</mapper>

+ 32 - 0
power-fitting-JN/src/main/resources/mapper/ProEconEquipmentmodelMapper.xml

@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.gyee.power.fitting.mapper.ProEconEquipmentmodelMapper">
+
+    <!-- 通用查询映射结果 -->
+    <resultMap id="BaseResultMap" type="com.gyee.power.fitting.model.ProEconEquipmentmodel">
+        <id column="id" property="id" />
+        <result column="nem_code" property="nemCode" />
+        <result column="name" property="name" />
+        <result column="aname" property="aname" />
+        <result column="description" property="description" />
+        <result column="power_production" property="powerProduction" />
+        <result column="windturbine_manufacturer_id" property="windturbineManufacturerId" />
+        <result column="photo" property="photo" />
+        <result column="unit" property="unit" />
+        <result column="cutinwind_speed" property="cutinwindSpeed" />
+        <result column="ratedwind_speed" property="ratedwindSpeed" />
+        <result column="cutoutwind_speed" property="cutoutwindSpeed" />
+        <result column="swept_area" property="sweptArea" />
+        <result column="equipment_category" property="equipmentCategory" />
+        <result column="spare1" property="spare1" />
+        <result column="spare2" property="spare2" />
+        <result column="spare3" property="spare3" />
+        <result column="spare4" property="spare4" />
+    </resultMap>
+
+    <!-- 通用查询结果列 -->
+    <sql id="Base_Column_List">
+        id, nem_code, name, aname, description, power_production, windturbine_manufacturer_id, photo, unit, cutinwind_speed, ratedwind_speed, cutoutwind_speed, swept_area, equipment_category, spare1, spare2, spare3, spare4
+    </sql>
+
+</mapper>