歌曲管理

This commit is contained in:
2024-07-08 17:43:39 +08:00
parent fadfe98303
commit 3cdb4edea3
6 changed files with 310 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package cn.ysk.cashier.dto.shop;
import lombok.Data;
@Data
public class TbShopSongQueryCriteria {
private String shopId;
private String name;
/**
* 从1开始
*/
private Long page = 1L;
/**
* 展示数量
*/
private Long size = 10L;
}