冀北重新发起,取消发起接口
This commit is contained in:
@@ -121,6 +121,17 @@ public class UserReportParam extends BaseEntity {
|
||||
private UserReportSubstationPO userReportSubstationPO;
|
||||
|
||||
|
||||
/**
|
||||
* 流程实例的编号
|
||||
*/
|
||||
|
||||
@ApiModelProperty(value = "流程实例的编号")
|
||||
private String processInstanceId;
|
||||
|
||||
@ApiModelProperty(value = "历史流程实例的编号")
|
||||
private String historyInstanceId;
|
||||
|
||||
|
||||
|
||||
|
||||
@Data
|
||||
|
||||
@@ -118,19 +118,19 @@ public class SupervisionTempLineReport extends BaseEntity {
|
||||
/**
|
||||
* CT变比
|
||||
*/
|
||||
@ApiModelProperty(value="CT1")
|
||||
@TableField(value = "ct_1")
|
||||
private Integer ct1;
|
||||
|
||||
@ApiModelProperty(value="CT2")
|
||||
@TableField(value = "ct_2")
|
||||
private Integer ct2;
|
||||
|
||||
/**
|
||||
* PT变比
|
||||
*/
|
||||
@ApiModelProperty(value="PT1")
|
||||
@TableField(value = "pt_1")
|
||||
private Integer pt1;
|
||||
|
||||
@ApiModelProperty(value="PT2")
|
||||
@TableField(value = "pt_2")
|
||||
private Integer pt2;
|
||||
|
||||
|
||||
@@ -179,7 +179,7 @@ public class SupervisionTempLineReport extends BaseEntity {
|
||||
* 是否参与统计
|
||||
*/
|
||||
@TableField(value = "is_statistical")
|
||||
private String isStatistical;
|
||||
private Integer isStatistical;
|
||||
/**
|
||||
* 线路号
|
||||
*/
|
||||
@@ -208,7 +208,7 @@ public class SupervisionTempLineReport extends BaseEntity {
|
||||
* 是否并网点
|
||||
*/
|
||||
@TableField(value = "is_grid_connection_point")
|
||||
private String isGridConnectionPoint;
|
||||
private Integer isGridConnectionPoint;
|
||||
|
||||
/**
|
||||
* 监测点运行状态
|
||||
|
||||
@@ -63,6 +63,8 @@ public class WarningLeaflet extends BaseEntity implements Serializable{
|
||||
*/
|
||||
private String processInstanceId;
|
||||
|
||||
private String historyInstanceId;
|
||||
|
||||
/**
|
||||
* 问题详细描述
|
||||
*/
|
||||
|
||||
@@ -8,7 +8,7 @@ import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
*
|
||||
* </p>
|
||||
*
|
||||
* @author hongawen
|
||||
@@ -88,4 +88,5 @@ public class QuitRunningDeviceVO extends BaseEntity implements Serializable{
|
||||
private String historyInstanceId;
|
||||
|
||||
|
||||
private String createBy;
|
||||
}
|
||||
|
||||
@@ -173,6 +173,6 @@ public class SupervisionDevMainReportVO {
|
||||
|
||||
private String monitoringTerminalName;
|
||||
|
||||
|
||||
private String createBy;
|
||||
|
||||
}
|
||||
|
||||
@@ -46,4 +46,7 @@ public class SupervisionTempLineDebugVO extends BaseEntity {
|
||||
* 试运行时间范围
|
||||
*/
|
||||
private String testRunTime;
|
||||
|
||||
|
||||
private String createBy;
|
||||
}
|
||||
|
||||
@@ -177,7 +177,7 @@ public class SupervisionTempLineReportVO {
|
||||
* 是否参与统计
|
||||
*/
|
||||
@ApiModelProperty(value="是否参与统计")
|
||||
private Boolean isStatistical;
|
||||
private Integer isStatistical;
|
||||
|
||||
/**
|
||||
* 监测点对象名称
|
||||
@@ -195,7 +195,7 @@ public class SupervisionTempLineReportVO {
|
||||
* 是否并网点
|
||||
*/
|
||||
@ApiModelProperty(value="是否并网点")
|
||||
private Boolean isGridConnectionPoint;
|
||||
private Integer isGridConnectionPoint;
|
||||
|
||||
/**
|
||||
* 监测点运行状态
|
||||
@@ -228,7 +228,8 @@ public class SupervisionTempLineReportVO {
|
||||
@ApiModelProperty(value = "流程实例的编号")
|
||||
private String processInstanceId;
|
||||
|
||||
|
||||
@ApiModelProperty(value = "流程实例的编号")
|
||||
private String historyInstanceId;
|
||||
/**
|
||||
* 线路号
|
||||
*/
|
||||
@@ -248,4 +249,7 @@ public class SupervisionTempLineReportVO {
|
||||
private Integer status;
|
||||
|
||||
|
||||
private String createBy;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -85,9 +85,13 @@ public class WarningLeafletVO extends BaseEntity implements Serializable{
|
||||
*/
|
||||
private String processInstanceId;
|
||||
|
||||
private String historyInstanceId;
|
||||
|
||||
/**
|
||||
* 问题详细描述
|
||||
*/
|
||||
private String issueDetail;
|
||||
|
||||
private String createBy;
|
||||
|
||||
}
|
||||
|
||||
@@ -192,4 +192,10 @@ public class SupervisionPlanVO {
|
||||
@ApiModelProperty(value = "流程实例的编号")
|
||||
private String processInstanceId;
|
||||
|
||||
|
||||
@ApiModelProperty(value = "历史流程实例的编号")
|
||||
private String historyInstanceId;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -134,6 +134,9 @@ public class UserReportVO {
|
||||
@TableField(value = "`status`")
|
||||
private Integer status;
|
||||
|
||||
|
||||
private String createBy;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user