普测计划
This commit is contained in:
@@ -39,6 +39,18 @@ public class SurveyTest extends BaseEntity implements Serializable {
|
||||
*/
|
||||
private String deptId;
|
||||
|
||||
|
||||
/**
|
||||
* 0 关联系统内变电站;1 用户手动输入变电站
|
||||
*/
|
||||
private Integer customSubstationFlag;
|
||||
|
||||
/**
|
||||
* 变电站台账ID或者用户手动输入的变电站名称
|
||||
*/
|
||||
private String substation;
|
||||
|
||||
|
||||
/**
|
||||
* 计划完成时间
|
||||
*/
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user