update 优化 删除字典无用状态字段(基本用不上 禁用后还会导致回显问题)

This commit is contained in:
疯狂的狮子Li
2023-08-07 17:23:27 +08:00
parent b045cb4239
commit 3637c16d86
4 changed files with 1 additions and 43 deletions

View File

@ -1,7 +1,6 @@
export interface DictDataQuery extends PageQuery {
dictName: string;
dictType: string;
status: string;
dictLabel: string;
}
@ -12,7 +11,6 @@ export interface DictDataVO extends BaseEntity {
cssClass: string;
listClass: ElTagType;
dictSort: number;
status: string;
remark: string;
}
@ -24,6 +22,5 @@ export interface DictDataForm {
cssClass: string;
listClass: ElTagType;
dictSort: number;
status: string;
remark: string;
}

View File

@ -2,7 +2,6 @@ export interface DictTypeVO extends BaseEntity {
dictId: number | string;
dictName: string;
dictType: string;
status: string;
remark: string;
}
@ -10,12 +9,10 @@ export interface DictTypeForm {
dictId: number | string | undefined;
dictName: string;
dictType: string;
status: string;
remark: string;
}
export interface DictTypeQuery extends PageQuery {
dictName: string;
dictType: string;
status: string;
}