| 1234567891011121314151617181920212223242526 |
- /**
- * 字典数据类型定义
- */
- // 字典数据项
- export type SysDictData = {
- dictCode: string | null;
- dictSort: number | null;
- dictLabel: string | null;
- dictValue: string | null;
- dictType: string | null;
- cssClass: string | null;
- listClass: string | null;
- isDefault: string | null;
- status: string | null;
- default: boolean | null;
- createTime: string | null;
- remark: string | null;
- }
- // 字典数据响应
- export type DictDataResponse = {
- code: number;
- msg: string | null;
- data: SysDictData[];
- }
|