perf: 台桌列表增加分页

This commit is contained in:
2024-10-25 09:53:26 +08:00
parent 537b9b408b
commit e2a624e653
4 changed files with 28 additions and 5 deletions

View File

@@ -18,6 +18,8 @@ package cn.ysk.cashier.dto.shop;
import lombok.Data;
import cn.ysk.cashier.annotation.Query;
import javax.validation.constraints.NotNull;
/**
* @website https://eladmin.vip
* @author lyf
@@ -32,6 +34,7 @@ public class TbShopTableQueryCriteria{
/** 精确 */
@Query
@NotNull
private Integer shopId;
@Query
@@ -39,4 +42,7 @@ public class TbShopTableQueryCriteria{
@Query
private Long qrcode;
private Integer page = 1;
private Integer size = 99999;
}