xiangpei
2024-12-12 2330e34c1d0f8a3c58a729eaee8e9987f612d83d
system/src/main/java/com/ycl/system/domain/base/AbsQuery.java
@@ -13,9 +13,9 @@
public class AbsQuery {
    @ApiModelProperty(value = "当前页", required = true)
    private Long currentPage = 1L;
    private long currentPage = 1L;
    @ApiModelProperty(value = "每页条数", required = true)
    private Long pageSize = 10L;
    private long pageSize = 10L;
}