将终端台账拆分为pq&pms两类

This commit is contained in:
2022-09-29 19:43:14 +08:00
parent 5385e7521b
commit ab8e86f257
530 changed files with 5060 additions and 1863 deletions

View File

@@ -34,7 +34,7 @@
</dependency>
<dependency>
<groupId>com.njcn</groupId>
<artifactId>device-api</artifactId>
<artifactId>pq-device-api</artifactId>
<version>1.0.0</version>
<scope>compile</scope>
</dependency>

View File

@@ -1,7 +1,7 @@
package com.njcn.event.pojo.param;
import com.njcn.device.pojo.param.DeviceInfoParam;
import com.njcn.device.pq.pojo.param.DeviceInfoParam;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

View File

@@ -1,6 +1,5 @@
package com.njcn.event.pojo.param;
import com.njcn.device.pojo.param.DeviceInfoParam;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.Getter;

View File

@@ -1,6 +1,6 @@
package com.njcn.event.pojo.param;
import com.njcn.device.pojo.param.DeviceInfoParam;
import com.njcn.device.pq.pojo.param.DeviceInfoParam;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;

View File

@@ -1,6 +1,6 @@
package com.njcn.event.pojo.param;
import com.njcn.device.pojo.param.DeviceInfoParam;
import com.njcn.device.pq.pojo.param.DeviceInfoParam;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

View File

@@ -1,6 +1,8 @@
package com.njcn.event.pojo.po;
import io.swagger.annotations.ApiModelProperty;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.datatype.jsr310.ser.InstantSerializer;
import lombok.Data;
import org.influxdb.annotation.Column;
import org.influxdb.annotation.Measurement;
@@ -22,6 +24,7 @@ public class EventDetail {
private String lineId;
@Column(name = "time")
@JsonSerialize(using = InstantSerializer.class)
private Instant timeId;
@Column(name = "event_describe")
@@ -94,5 +97,4 @@ public class EventDetail {
private String subName;
}

View File

@@ -1,6 +1,6 @@
package com.njcn.event.pojo.vo;
import com.njcn.device.pojo.vo.SubstationDetailVO;
import com.njcn.device.pq.pojo.vo.SubstationDetailVO;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

View File

@@ -1,6 +1,6 @@
package com.njcn.event.pojo.vo;
import com.njcn.device.pojo.vo.AreaLineInfoVO;
import com.njcn.device.pq.pojo.vo.AreaLineInfoVO;
import lombok.Data;
import java.math.BigDecimal;

View File

@@ -1,6 +1,6 @@
package com.njcn.event.pojo.vo;
import com.njcn.device.pojo.vo.AreaLineInfoVO;
import com.njcn.device.pq.pojo.vo.AreaLineInfoVO;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;

View File

@@ -1,16 +1,12 @@
package com.njcn.event.pojo.vo;
import com.njcn.device.pojo.vo.AreaLineInfoVO;
import com.njcn.event.pojo.po.EventDetail;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.influxdb.annotation.Column;
import org.influxdb.annotation.Measurement;
import java.math.BigDecimal;
import java.time.Instant;
/**
*获取事件报告
* @author zbj