分组中添加设备

This commit is contained in:
kerwincui
2022-06-06 15:52:32 +08:00
parent 24f2e65f2b
commit 1f7a127499
6 changed files with 79 additions and 6 deletions

View File

@@ -102,9 +102,20 @@ public class Device extends BaseEntity
/** 设备摘要 **/
private String summary;
/** 分组ID用于分组查询 **/
private Long groupId;
/** 删除标志0代表存在 2代表删除 */
private String delFlag;
public Long getGroupId() {
return groupId;
}
public void setGroupId(Long groupId) {
this.groupId = groupId;
}
public String getSummary() {
return summary;
}