装置模板表新增字段

This commit is contained in:
2023-08-07 20:08:59 +08:00
parent e4116eaff0
commit 4f954e9469
4 changed files with 10 additions and 3 deletions

View File

@@ -27,6 +27,7 @@ public class CsDevModelRelationAddParm {
@ApiModelProperty(value="模板 id")
@NotNull(message="模板 id不能为空")
private String modelId;
@ApiModelProperty(value="逻辑设备id")
private Integer did;
}

View File

@@ -40,4 +40,11 @@ public class CsDevModelRelationPO extends BaseEntity {
@TableField(value = "status")
@ApiModelProperty(value="状态(0删除 1正常)")
private String status;
/**
* 逻辑设备id
*/
@TableField(value = "did")
@ApiModelProperty(value="逻辑设备id")
private Integer did;
}