This commit is contained in:
wangjinlei
2023-10-10 16:45:46 +08:00
parent e682d9934e
commit d23ec8b533
2 changed files with 19 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
package com.peanut.modules.book.to;
import lombok.Data;
import java.io.Serializable;
@Data
public class PageIdDto implements Serializable {
private Integer id;
private Integer limit;
private Integer page;
}