使用字典配置替换枚举.

This commit is contained in:
lijiahangmax
2023-10-27 01:43:16 +08:00
parent 5d43a9ce88
commit 74688ca535
17 changed files with 198 additions and 127 deletions

View File

@@ -66,6 +66,8 @@ export interface DictValueQueryResponse extends TableData {
* 字典配置值选项查询响应
*/
export interface DictValueOptionsQueryResponse extends Options {
label: string;
value: string | number | boolean;
[key: string]: unknown;
}