feat: 新增用户导入导出和导入模板下载功能

This commit is contained in:
郝先瑞
2022-04-13 00:18:08 +08:00
parent 3e30a6eba8
commit c260d39b1c
4 changed files with 301 additions and 215 deletions

View File

@@ -58,4 +58,13 @@ export interface UserFormData {
status: number,
remark: string,
roleIds: number[]
}
/**
* 用户导入表单类型声明
*/
export interface UserImportFormData {
deptId: number,
roleIds: number[]
}