普测计划

This commit is contained in:
2024-06-03 19:31:12 +08:00
parent aca86e6b57
commit 188c0515d7
10 changed files with 211 additions and 5 deletions

View File

@@ -39,6 +39,18 @@ public class SurveyTest extends BaseEntity implements Serializable {
*/
private String deptId;
/**
* 0 关联系统内变电站1 用户手动输入变电站
*/
private Integer customSubstationFlag;
/**
* 变电站台账ID或者用户手动输入的变电站名称
*/
private String substation;
/**
* 计划完成时间
*/

View File

@@ -5,6 +5,7 @@ import lombok.Data;
import java.io.Serializable;
import java.time.LocalDate;
import java.util.List;
/**
* <p>
@@ -84,5 +85,10 @@ public class SurveyPlanVO extends BaseEntity implements Serializable {
*/
private Integer state;
/**
* 变电站详情
*/
private List<SurveySubstation> surveySubstationList;
}

View File

@@ -0,0 +1,28 @@
package com.njcn.supervision.pojo.vo.survey;
import lombok.Data;
import java.io.Serializable;
@Data
public class SurveySubstation implements Serializable {
/**
* 变电站名
*/
private String substationName;
/**
* 电压等级
*/
private String voltageLevel;
/**
* 数据来源
* 0系统内
* 1用户自定义
*/
private Integer dataSource = 0;
}