department.ts 191 B

12345678910
  1. /** 部门列表 */
  2. export type DepartmentListData = {
  3. id: string,
  4. /** 部门编号 */
  5. code: string,
  6. /** 部门名称 */
  7. name: string,
  8. /** 创建时间 */
  9. createTime: string
  10. };