多租户测试调整

This commit is contained in:
kerwincui
2022-06-11 02:32:48 +08:00
parent 8571f899da
commit 33a7ba9645
18 changed files with 146 additions and 45 deletions

View File

@@ -105,6 +105,25 @@ public class Device extends BaseEntity
/** 分组ID用于分组查询 **/
private Long groupId;
/** 是否设备所有者,用于查询 **/
private Integer isOwner;
public Integer getLocationWay() {
return locationWay;
}
public void setLocationWay(Integer locationWay) {
this.locationWay = locationWay;
}
public Integer getIsOwner() {
return isOwner;
}
public void setIsOwner(Integer isOwner) {
this.isOwner = isOwner;
}
/** 删除标志0代表存在 2代表删除 */
private String delFlag;
@@ -124,14 +143,6 @@ public class Device extends BaseEntity
this.summary = summary;
}
public Integer getlocationWay() {
return locationWay;
}
public void setlocationWay(Integer locationWay) {
this.locationWay = locationWay;
}
public String getImgUrl() {
return imgUrl;
}