feat: 添加部门管理

This commit is contained in:
2025-02-11 04:34:29 +08:00
parent a5f04356ee
commit 74cc990645
97 changed files with 5218 additions and 990 deletions

17
types/global.d.ts vendored
View File

@@ -197,7 +197,24 @@ declare global {
code: number;
/**操作信息 */
msg: string;
/**执行时间 */
time: string;
/**执行状态 */
success: boolean;
/**响应结果 */
data: T;
}
/**
* 查询列表响应
*/
interface QueryListResult<T> {
/**当前页 */
page: number;
/**每页数量 */
pageSize: number;
/**总页数 */
total: number;
/**结果 */
result: Array<T>;
}
}