| 1234567891011121314151617181920212223242526272829303132333435 |
- import { AppRouteRecordRaw } from '/@/router/types';
- /**
- * @description: Get menu return value
- */
- export interface getMenuListResultModel {
- codeList: string[];
- allAuth: any[];
- auth: any[];
- menu: AppRouteRecordRaw[];
- }
- export interface EnfMineTreeItem {
- /** 部门ID */
- id: string;
- /** 部门名称 */
- departName: string;
- /** 部门编码 */
- orgCode: string;
- /** 父级部门ID */
- parentId: string;
- /** 组织类型 */
- orgType: string;
- /** 编码 */
- fax: string;
- /** 备注 */
- memo?: string;
- /** 备注2 */
- memoDesc: string[];
- /** 备注3 */
- description: string;
- childDepart: EnfMineTreeItem[];
- }
|