From 1595cb282aab5399862fac6406b5de550863e3b6 Mon Sep 17 00:00:00 2001 From: 疯狂的狮子Li <15040126243@163.com> Date: 星期一, 03 四月 2023 00:05:09 +0800 Subject: [PATCH] update 调整代码格式 --- src/api/system/user/types.ts | 102 +++++++++++++++++++++++++------------------------- 1 files changed, 51 insertions(+), 51 deletions(-) diff --git a/src/api/system/user/types.ts b/src/api/system/user/types.ts index 997b6d4..77e9c32 100644 --- a/src/api/system/user/types.ts +++ b/src/api/system/user/types.ts @@ -6,79 +6,79 @@ * 鐢ㄦ埛淇℃伅 */ export interface UserInfo { - user: UserVO; - roles: string[]; - permissions: string[]; + user: UserVO; + roles: string[]; + permissions: string[]; } /** * 鐢ㄦ埛鏌ヨ瀵硅薄绫诲瀷 */ export interface UserQuery extends PageQuery { - userName?: string; - phonenumber?: string; - status?: string; - deptId?: string | number; - roleId?: string | number; + userName?: string; + phonenumber?: string; + status?: string; + deptId?: string | number; + roleId?: string | number; } /** * 鐢ㄦ埛杩斿洖瀵硅薄 */ export interface UserVO extends BaseEntity { - userId: string | number; - deptId: number; - userName: string; - nickName: string; - userType: string; - email: string; - phonenumber: string; - sex: string; - avatar: string; - status: string; - delFlag: string; - loginIp: string; - loginDate: string; - remark: string; - dept: DeptVO; - roles: RoleVO[]; - roleIds: any; - postIds: any; - roleId: any; - admin: boolean; + userId: string | number; + deptId: number; + userName: string; + nickName: string; + userType: string; + email: string; + phonenumber: string; + sex: string; + avatar: string; + status: string; + delFlag: string; + loginIp: string; + loginDate: string; + remark: string; + dept: DeptVO; + roles: RoleVO[]; + roleIds: any; + postIds: any; + roleId: any; + admin: boolean; } /** * 鐢ㄦ埛琛ㄥ崟绫诲瀷 */ export interface UserForm { - id?: string; - userId?: string; - deptId?: number; - userName: string; - nickName?: string; - password: string; - phonenumber?: string; - email?: string; - sex?: string; - status: string; - remark?: string; - postIds: string[]; - roleIds: string[]; + id?: string; + userId?: string; + deptId?: number; + userName: string; + nickName?: string; + password: string; + phonenumber?: string; + email?: string; + sex?: string; + status: string; + remark?: string; + postIds: string[]; + roleIds: string[]; } export interface UserInfoVO { - user: UserVO; - roles: RoleVO[]; - roleIds: string[]; - posts: PostVO[]; - postIds: string[]; - roleGroup: string; - postGroup: string; + user: UserVO; + roles: RoleVO[]; + roleIds: string[]; + posts: PostVO[]; + postIds: string[]; + roleGroup: string; + postGroup: string; } export interface ResetPwdForm { - oldPassword: string; - newPassword: string; - confirmPassword: string; + oldPassword: string; + newPassword: string; + confirmPassword: string; } -- Gitblit v1.9.3