增加用户类型修改导出请求

This commit is contained in:
jiangzhe 2024-05-09 15:49:17 +08:00
parent 2d43fcb8da
commit cf4def485f
2 changed files with 2 additions and 1 deletions

View File

@ -281,7 +281,7 @@ public class SysUserController extends BaseController {
*/
@Log(title = "用户管理", businessType = BusinessType.EXPORT)
@SaCheckPermission("system:user:export")
@GetMapping("/export/password")
@PostMapping("/export/password")
public void exportPassword(@NotNull Long deptId, HttpServletResponse response) {
List<SysUserPassWordExportVo> listVo = userService.selectUserpassWordListByDept(deptId);
ExcelUtil.exportExcel(listVo, "用户密码", SysUserPassWordExportVo.class, response);

View File

@ -68,6 +68,7 @@
u.dept_id,
u.nick_name,
u.user_name,
u.user_type,
u.email,
u.avatar,
u.phonenumber,