冀北电能质量问题流程修改
This commit is contained in:
@@ -72,7 +72,7 @@ public class SupervisionTempLineDebugParam {
|
||||
private String orgNo;
|
||||
|
||||
private List<Integer> statueList;
|
||||
|
||||
private String dealState;
|
||||
/**
|
||||
* 1:审批中;2:审批通过;3:审批不通过;4:已取消
|
||||
*/
|
||||
|
||||
@@ -124,6 +124,7 @@ public class WarningLeafletParam implements Serializable{
|
||||
* 负责单位
|
||||
*/
|
||||
String deptIndex;
|
||||
String dealState;
|
||||
|
||||
/**
|
||||
* 1:审批中;2:审批通过;3:审批不通过;4:已取消;5:待反馈
|
||||
|
||||
@@ -93,6 +93,7 @@ public class SupervisionUserComplaintParam {
|
||||
* 负责单位
|
||||
*/
|
||||
String deptIndex;
|
||||
String dealState;
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -121,6 +121,7 @@ public class SurveyTestParam implements Serializable {
|
||||
*/
|
||||
String deptIndex;
|
||||
|
||||
String dealState;
|
||||
|
||||
/**
|
||||
* 测试审批状态(1:审批中;2:审批通过;3:审批不通过;4:已取消)
|
||||
|
||||
@@ -8,6 +8,7 @@ import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
@@ -41,4 +42,10 @@ public class TempLineRunTestWarning extends BaseEntity implements Serializable{
|
||||
*/
|
||||
@TableField(value = "reason")
|
||||
private String reason;
|
||||
|
||||
/**
|
||||
* 状态:0-未解决 1-已解决
|
||||
*/
|
||||
@TableField(value = "deal_state")
|
||||
private Integer dealState;
|
||||
}
|
||||
@@ -1,7 +1,9 @@
|
||||
package com.njcn.supervision.pojo.po.leaflet;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
@@ -87,7 +89,11 @@ public class WarningLeaflet extends BaseEntity implements Serializable{
|
||||
*/
|
||||
private String reportPath;
|
||||
|
||||
|
||||
/**
|
||||
* 状态:0-未解决 1-已解决
|
||||
*/
|
||||
@TableField(value = "deal_state")
|
||||
private Integer dealState;
|
||||
/**
|
||||
* 状态:0-删除 1-正常
|
||||
*/
|
||||
|
||||
@@ -110,6 +110,12 @@ public class SupervisionUserComplaintPO extends BaseEntity {
|
||||
@TableField(value = "initiate_warning_flag")
|
||||
private Integer initiateWarningFlag;
|
||||
|
||||
/**
|
||||
* 状态:0-未解决 1-已解决
|
||||
*/
|
||||
@TableField(value = "deal_state")
|
||||
private Integer dealState;
|
||||
|
||||
/**
|
||||
* 状态:0-删除 1-正常
|
||||
*/
|
||||
|
||||
@@ -107,6 +107,14 @@ public class SurveyTest extends BaseEntity implements Serializable {
|
||||
@TableField(value = "initiate_warning_flag")
|
||||
private Integer initiateWarningFlag;
|
||||
|
||||
|
||||
/**
|
||||
* 状态:0-未解决 1-已解决
|
||||
*/
|
||||
@TableField(value = "deal_state")
|
||||
private Integer dealState;
|
||||
|
||||
|
||||
/**
|
||||
* 状态:0-删除 1-正常
|
||||
*/
|
||||
|
||||
@@ -67,7 +67,14 @@ public class SupervisionTempLineDebugVO extends BaseEntity {
|
||||
|
||||
@ApiModelProperty(value = "预告警单问题Id")
|
||||
private String problemId;
|
||||
@ApiModelProperty(value = "状态:0-未解决 1-已解决")
|
||||
private Integer dealState;
|
||||
|
||||
@ApiModelProperty(value = "采取措施")
|
||||
private String takeStep;
|
||||
|
||||
@ApiModelProperty(value = "处理成效报告")
|
||||
private String reportPath;
|
||||
public void setTestRunReport(String testRunReport) {
|
||||
if (StrUtil.isNotBlank(testRunReport)) {
|
||||
this.testRunReport = "/" + testRunReport;
|
||||
|
||||
@@ -123,4 +123,6 @@ public class WarningLeafletVO extends BaseEntity implements Serializable{
|
||||
|
||||
@ApiModelProperty("技术监督报告")
|
||||
private String supervisionReport;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -56,4 +56,14 @@ public class SupervisionUserComplaintVO {
|
||||
private String dutyOrgName;
|
||||
|
||||
|
||||
@ApiModelProperty(value = "状态:0-未解决 1-已解决")
|
||||
private Integer dealState;
|
||||
|
||||
@ApiModelProperty(value = "采取措施")
|
||||
private String takeStep;
|
||||
|
||||
@ApiModelProperty(value = "处理成效报告")
|
||||
private String reportPath;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -149,4 +149,13 @@ public class SurveyTestVO extends BaseEntity implements Serializable {
|
||||
*/
|
||||
private Integer state;
|
||||
|
||||
@ApiModelProperty(value = "状态:0-未解决 1-已解决")
|
||||
private Integer dealState;
|
||||
|
||||
@ApiModelProperty(value = "采取措施")
|
||||
private String takeStep;
|
||||
|
||||
@ApiModelProperty(value = "处理成效报告")
|
||||
private String reportPath;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user