重构:重构部门管理前端代码;新增修改部门、批量删除部门、查看部门详情功能(后端主要基于 CRUD 通用组件提供 API)

This commit is contained in:
2023-02-01 23:25:36 +08:00
parent d27339ef3b
commit c5d4e8ae21
13 changed files with 532 additions and 504 deletions

View File

@@ -69,8 +69,8 @@ public class PageQuery implements Serializable {
/** 默认页码1 */
private static final int DEFAULT_PAGE = 1;
/** 默认每页记录数:int 最大值 */
private static final int DEFAULT_SIZE = Integer.MAX_VALUE;
/** 默认每页记录数:10 */
private static final int DEFAULT_SIZE = 10;
private static final String DELIMITER = ",";
public PageQuery() {