xiangpei
2024-12-12 4b3f6bd762fc742aa29d8e6b75f4fc54ef6d22ad
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;
}