Blame view

Yi.Vben5.Vue3/apps/web-antd/src/api/system/config/model.d.ts 331 Bytes
515fceeb   “wangming”   框架初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  export interface SysConfig {
    id: string;
    configName: string;
    configKey: string;
    configValue: string;
    configType: string | null;
    orderNum: number;
    remark: string | null;
    isDeleted: boolean;
    creationTime: string;
    creatorId: string | null;
    lastModifierId: string | null;
    lastModificationTime: string | null;
  }