src/api/system/user/types.ts
@@ -1,4 +1,3 @@ import { DeptVO } from './../dept/types'; import { RoleVO } from '@/api/system/role/types'; import { PostVO } from '@/api/system/post/types'; @@ -27,6 +26,7 @@ */ export interface UserVO extends BaseEntity { userId: string | number; tenantId: string; deptId: number; userName: string; nickName: string; @@ -40,7 +40,7 @@ loginIp: string; loginDate: string; remark: string; dept: DeptVO; deptName: string; roles: RoleVO[]; roleIds: any; postIds: any;