refactor: 权限系统模块重构完成

Former-commit-id: b33078bfbfea309af518cfab41080d0fea819491
This commit is contained in:
horizons
2022-10-21 00:59:49 +08:00
parent b0a0033371
commit cf24d080e5
16 changed files with 576 additions and 990 deletions

View File

@@ -2,7 +2,7 @@
* 部门查询参数类型声明
*/
export interface DeptQueryParam {
name: string | undefined;
keywords: string | undefined;
status: number | undefined;
}

View File

@@ -29,7 +29,7 @@ export type DictPageResult = PageResult<Dict[]>;
/**
* 字典表单类型声明
*/
export interface DictFormTypeData {
export interface DictTypeFormData {
id: number | undefined;
name: string;
code: string;