This commit is contained in:
shuo.wang
2025-04-10 11:31:47 +08:00
parent f7bbd74990
commit fd980c0acb
2 changed files with 21 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
package com.cool.store.dto;
import lombok.Data;
import org.springframework.web.bind.annotation.RequestParam;
/**
* @Author: WangShuo
* @Date: 2025/04/10/11:30
* @Version 1.0
* @注释:
*/
@Data
public class GetUserDTO {
private String keyword;
private Integer pageNum =1;
private Integer pageSize = 10;
}