// 列表请求参数 export interface IListQuery { deptName: string // 部门名称 deptId: string // 部门id limit: number offset: number } // 表格 export interface IList { deptId: string // 部门编号 fullName: string // 部门名称 deptType: string // 部门类型 deptTypeName?: string // 部门类型名称 管理、业务、检定 tips?: string // 部门类别 director: string // 负责人 }