增加字段

This commit is contained in:
huangzj
2023-07-28 14:17:13 +08:00
parent a14381bcc5
commit 5c4feecf7c
4 changed files with 35 additions and 10 deletions

View File

@@ -164,6 +164,9 @@ public class LineDetail{
* 接线图
*/
private String wiringDiagram;
/**
* 监测点接线相别0单相,1三相默认三相
*/
private Integer ptPhaseType;
}

View File

@@ -104,5 +104,7 @@ public class LineDetailDataVO {
*/
@ApiModelProperty(name = "wiringDiagram",value = "接线图")
private String wiringDiagram;
@ApiModelProperty(name = "ptPhaseType",value = "监测点接线相别0单相,1三相默认三相")
private Integer ptPhaseType;
}