feat: 用户管理新增导入

This commit is contained in:
xlsea
2025-05-08 17:47:53 +08:00
parent 5de60e2a83
commit 62460bba90
11 changed files with 243 additions and 26 deletions

View File

@ -23,7 +23,7 @@ declare namespace Api {
/** 备注 */
remark?: string;
/** 角色ID */
roleId: number;
roleId: CommonType.IdType;
/** 角色权限字符串 */
roleKey: string;
/** 角色名称 */
@ -144,6 +144,12 @@ declare namespace Api {
/** user list */
type UserList = Common.PaginatingQueryRecord<User>;
/** auth role */
type AuthRole = {
user: User;
roles: Role[];
};
/** social */
type Social = Common.CommonRecord<{
/** 用户ID */