Blame view

Yi.Vben5.Vue3/apps/web-antd/src/api/system/dict/dict-data-model.d.ts 399 Bytes
515fceeb   “wangming”   框架初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  export interface DictData {
    id: string;
    isDeleted: boolean;
    orderNum: number;
    state: boolean;
    remark: string | null;
    listClass: string | null;
    cssClass: string | null;
    dictType: string;
    dictLabel: string | null;
    dictValue: string;
    isDefault: boolean;
    creationTime: string;
    creatorId: string | null;
    lastModifierId: string | null;
    lastModificationTime: string | null;
  }