0
0

WEB:分页查询设备列表

This commit is contained in:
2025-07-04 15:49:23 +08:00
parent 3947f9b6f0
commit 2d34120b45
4 changed files with 6 additions and 7 deletions

View File

@ -45,10 +45,10 @@ public class DeviceQueryCriteria extends BaseEntity {
private Integer deviceStatus;
@Schema(name = "页码", example = "1")
private Integer page = 1;
private Integer pageNum = 1;
@Schema(name = "每页数据量", example = "10")
private Integer size = 10;
private Integer pageSize = 10;
@Schema(name = "客户id")
private Long customerId;

View File

@ -31,9 +31,8 @@ public class DeviceTypeQueryCriteria extends BaseEntity implements Serializable
private Long tenantId;
@Schema(name = "页码", example = "1")
private Integer page = 1;
private Integer pageNum = 1;
@Schema(name = "每页数据量", example = "10")
private Integer size = 10;
private Integer pageSize = 10;
}