Blame view

Yi.Vben5.Vue3/apps/web-antd/src/api/system/dept/model.d.ts 281 Bytes
515fceeb   “wangming”   框架初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  export interface Dept {
    creationTime: string;
    creatorId?: string | null;
    state: boolean;
    deptName: string;
    deptCode?: string;
    leader?: string;
    leaderName?: string;
    parentId: string | null;
    remark?: string;
    orderNum: number;
    id: string;
    children?: Dept[];
  }