menuModel.ts 613 B

123456789101112131415161718192021222324252627282930313233
  1. import { AppRouteRecordRaw } from '/@/router/types';
  2. /**
  3. * @description: Get menu return value
  4. */
  5. export interface getMenuListResultModel {
  6. codeList: string[];
  7. allAuth: any[];
  8. auth: any[];
  9. menu: AppRouteRecordRaw[];
  10. }
  11. export interface EnfMineTreeItem {
  12. /** 部门ID */
  13. id: string;
  14. /** 部门名称 */
  15. departName: string;
  16. /** 部门编码 */
  17. orgCode: string;
  18. /** 父级部门ID */
  19. parentId: string;
  20. /** 组织类型 */
  21. orgType: string;
  22. /** 编码 */
  23. fax: string;
  24. /** 备注 */
  25. memo?: string;
  26. /** 备注2 */
  27. memoDesc: string[];
  28. /** 备注3 */
  29. description: string;
  30. }