新增状态管理查询

This commit is contained in:
cdf
2024-06-05 14:53:05 +08:00
parent 84d3f108ad
commit 4045944558
11 changed files with 55 additions and 11 deletions

View File

@@ -120,6 +120,12 @@ public class QuitRunningDeviceParam implements Serializable {
@ApiModelProperty(value = "设备编号")
private String deviceId;
/**
* 1:审批中2审批通过3审批不通过4已取消
*/
@ApiModelProperty(value = "审批状态")
private Integer status;
}

View File

@@ -179,5 +179,11 @@ public class SupervisionDevMainReportParam {
@ApiModelProperty(value = "填报部门")
private String orgNo;
/**
* 1:审批中2审批通过3审批不通过4已取消
*/
@ApiModelProperty(value = "审批状态")
private Integer status;
}
}

View File

@@ -73,5 +73,11 @@ public class SupervisionTempLineDebugParam {
private List<Integer> statueList;
/**
* 1:审批中2审批通过3审批不通过4已取消
*/
@ApiModelProperty(value="1:审批中2审批通过3审批不通过4已取消")
private Integer status;
}
}

View File

@@ -271,5 +271,8 @@ public class SupervisionTempLineReportParam {
private List<Integer> statueList;
@ApiModelProperty(value = "审核状态")
private Integer status;
}
}

View File

@@ -116,7 +116,11 @@ public class WarningLeafletParam implements Serializable{
@EqualsAndHashCode(callSuper = true)
public static class WarningLeafletQueryParam extends BaseParam {
/**
* 1:审批中2审批通过3审批不通过4已取消5待反馈
*/
@ApiModelProperty(value = "设备编号")
private Integer status;
}

View File

@@ -48,6 +48,8 @@ public class SupervisionUserComplaintVO {
@ApiModelProperty(value = "是否发起警告单(01是)")
private Integer initiateWarningFlag;
private String createBy;