dict.uts 560 B

1234567891011121314151617181920212223242526
  1. /**
  2. * 字典数据类型定义
  3. */
  4. // 字典数据项
  5. export type SysDictData = {
  6. dictCode: string | null;
  7. dictSort: number | null;
  8. dictLabel: string | null;
  9. dictValue: string | null;
  10. dictType: string | null;
  11. cssClass: string | null;
  12. listClass: string | null;
  13. isDefault: string | null;
  14. status: string | null;
  15. default: boolean | null;
  16. createTime: string | null;
  17. remark: string | null;
  18. }
  19. // 字典数据响应
  20. export type DictDataResponse = {
  21. code: number;
  22. msg: string | null;
  23. data: SysDictData[];
  24. }