冀北电能质量问题流程修改

This commit is contained in:
hzj
2024-10-30 19:52:15 +08:00
parent b659dd055f
commit d3f412e2cb
21 changed files with 190 additions and 32 deletions

View File

@@ -72,7 +72,7 @@ public class SupervisionTempLineDebugParam {
private String orgNo;
private List<Integer> statueList;
private String dealState;
/**
* 1:审批中2审批通过3审批不通过4已取消
*/

View File

@@ -124,6 +124,7 @@ public class WarningLeafletParam implements Serializable{
* 负责单位
*/
String deptIndex;
String dealState;
/**
* 1:审批中2审批通过3审批不通过4已取消5待反馈

View File

@@ -93,6 +93,7 @@ public class SupervisionUserComplaintParam {
* 负责单位
*/
String deptIndex;
String dealState;
}

View File

@@ -121,6 +121,7 @@ public class SurveyTestParam implements Serializable {
*/
String deptIndex;
String dealState;
/**
* 测试审批状态(1:审批中2审批通过3审批不通过4已取消)

View File

@@ -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;
}

View File

@@ -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-正常
*/

View File

@@ -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-正常
*/

View File

@@ -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-正常
*/

View File

@@ -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;

View File

@@ -123,4 +123,6 @@ public class WarningLeafletVO extends BaseEntity implements Serializable{
@ApiModelProperty("技术监督报告")
private String supervisionReport;
}

View File

@@ -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;
}

View File

@@ -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;
}