This commit is contained in:
Lemon
2023-07-07 13:29:36 +08:00
parent 753ed465f1
commit 583dbdbd8a
4 changed files with 26 additions and 8 deletions

View File

@@ -0,0 +1,16 @@
package com.jsowell.pile.dto;
import lombok.Data;
/**
* TODO
*
* @author Lemon
* @Date 2023/7/7 13:27
*/
@Data
public class PageDTO {
private Integer pageSize;
private Integer pageNum;
}