增加用户类型修改导出请求
This commit is contained in:
parent
2d43fcb8da
commit
cf4def485f
|
@ -281,7 +281,7 @@ public class SysUserController extends BaseController {
|
||||||
*/
|
*/
|
||||||
@Log(title = "用户管理", businessType = BusinessType.EXPORT)
|
@Log(title = "用户管理", businessType = BusinessType.EXPORT)
|
||||||
@SaCheckPermission("system:user:export")
|
@SaCheckPermission("system:user:export")
|
||||||
@GetMapping("/export/password")
|
@PostMapping("/export/password")
|
||||||
public void exportPassword(@NotNull Long deptId, HttpServletResponse response) {
|
public void exportPassword(@NotNull Long deptId, HttpServletResponse response) {
|
||||||
List<SysUserPassWordExportVo> listVo = userService.selectUserpassWordListByDept(deptId);
|
List<SysUserPassWordExportVo> listVo = userService.selectUserpassWordListByDept(deptId);
|
||||||
ExcelUtil.exportExcel(listVo, "用户密码", SysUserPassWordExportVo.class, response);
|
ExcelUtil.exportExcel(listVo, "用户密码", SysUserPassWordExportVo.class, response);
|
||||||
|
|
|
@ -68,6 +68,7 @@
|
||||||
u.dept_id,
|
u.dept_id,
|
||||||
u.nick_name,
|
u.nick_name,
|
||||||
u.user_name,
|
u.user_name,
|
||||||
|
u.user_type,
|
||||||
u.email,
|
u.email,
|
||||||
u.avatar,
|
u.avatar,
|
||||||
u.phonenumber,
|
u.phonenumber,
|
||||||
|
|
Loading…
Reference in New Issue