草稿功能各个页面开发

This commit is contained in:
hzj
2024-06-19 15:53:13 +08:00
parent b3a3d3356e
commit 22f5538c13
14 changed files with 342 additions and 527 deletions

View File

@@ -1,6 +1,5 @@
package com.njcn.supervision.pojo.param.device;
import com.njcn.db.bo.BaseEntity;
import com.njcn.web.pojo.param.BaseParam;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
@@ -29,6 +28,9 @@ public class QuitRunningDeviceParam implements Serializable {
private static final long serialVersionUID = 1L;
private String id;
@ApiModelProperty(value = "保存1,提交审批2")
private String saveOrCheckflag;
/**
* 设备编号
*/

View File

@@ -1,6 +1,5 @@
package com.njcn.supervision.pojo.param.device;
import com.njcn.db.bo.BaseEntity;
import com.njcn.web.pojo.param.BaseParam;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
@@ -24,7 +23,8 @@ import java.util.Map;
@NoArgsConstructor
public class SupervisionTempLineDebugParam {
private String id;
@ApiModelProperty(value = "保存1,提交审批2")
private String saveOrCheckflag;
/**
* 调试原因
*/

View File

@@ -26,6 +26,13 @@ import java.util.Map;
@NoArgsConstructor
public class SupervisionTempLineReportParam {
private String id;
@ApiModelProperty(value = "保存1,提交审批2")
private String saveOrCheckflag;
@ApiModelProperty(value = "填报部门")
private String orgId;
/**

View File

@@ -12,6 +12,9 @@ import java.time.LocalDate;
@Data
public class SurveyPlanParam implements Serializable {
private String id;
@ApiModelProperty(value = "保存1,提交审批2")
private String saveOrCheckflag;
private static final long serialVersionUID = 1L;
@@ -112,6 +115,8 @@ public class SurveyPlanParam implements Serializable {
*/
@ApiModelProperty(value = "计划状态")
private Integer status;
@ApiModelProperty(value = " 监督类型")
private String supvType;
}

View File

@@ -1,6 +1,5 @@
package com.njcn.supervision.pojo.param.survey;
import com.njcn.db.bo.BaseEntity;
import com.njcn.web.pojo.param.BaseParam;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@@ -26,6 +25,8 @@ public class SurveyTestParam implements Serializable {
@ApiModelProperty("id")
@NotBlank(message = "索引不能为空")
private String Id;
@ApiModelProperty(value = "保存1,提交审批2")
private String saveOrCheckflag;
/**
* 普测计划表id
@@ -102,11 +103,18 @@ public class SurveyTestParam implements Serializable {
@EqualsAndHashCode(callSuper = true)
public static class SurveyTestQueryParam extends BaseParam {
/**
* 普测负责单位
*/
String deptIndex;
/**
* 测试审批状态(1:审批中2审批通过3审批不通过4已取消)
*/
@ApiModelProperty(value = "测试审批状态")
private Integer status;
@ApiModelProperty(value = " 监督类型")
private String supvType;
}

View File

@@ -32,6 +32,9 @@ public class SupervisionTempDeviceReport {
*/
@TableField(value = "power_company")
private String powerCompany;
/**
* 0 关联系统内变电站;1用户手动输入变电站
*/