接口调整

This commit is contained in:
2023-08-16 16:29:54 +08:00
parent c7fd55a58a
commit ee43dce699
15 changed files with 66 additions and 8 deletions

View File

@@ -119,4 +119,10 @@ public class CsEquipmentDeliveryAddParm{
@ApiModelProperty(value="软件信息")
private String softinfoId;
/**
* 模块个数
*/
@ApiModelProperty(value="模块个数")
private Integer modelNumber;
}

View File

@@ -123,4 +123,9 @@ public class CsEquipmentDeliveryAuditParm {
@ApiModelProperty(value="软件信息")
private String softinfoId;
/**
* 模块个数
*/
@ApiModelProperty(value="模块个数")
private Integer modelNumber;
}

View File

@@ -132,5 +132,11 @@ public class CsEquipmentDeliveryPO extends BaseEntity {
@TableField(value = "softinfo_id")
private String softinfoId;
/**
* 模块个数
*/
@TableField(value = "module_number")
private Integer moduleNumber;
}

View File

@@ -72,5 +72,13 @@ public class CsLinePO extends BaseEntity {
@TableField(value = "conType")
private Integer conType;
/**
* 逻辑子设备id(与模板对应)
* 治理监测点 0
* 负载监测点 1
* 电网监测点 2
*/
@TableField(value = "clDid")
private Integer clDid;
}