0
0

管理员

This commit is contained in:
2025-08-21 16:51:17 +08:00
parent 5b6927729f
commit e6d0e883fb
5 changed files with 52 additions and 17 deletions

View File

@ -65,4 +65,9 @@ public class DeviceQueryCriteria extends BaseEntity {
/* app绑定用户id */
private Long bindingUserId;
/* 是否为管理员 */
private Boolean isAdmin = false;
}

View File

@ -35,4 +35,10 @@ public class DeviceTypeQueryCriteria extends BaseEntity implements Serializable
@Schema(name = "每页数据量", example = "10")
private Integer pageSize = 10;
/* 是否为管理员 */
private Boolean isAdmin = false;
}