|
|
|
@ -7,6 +7,7 @@ import cn.hutool.core.collection.CollUtil;
|
|
|
|
|
import cn.hutool.core.util.IdUtil;
|
|
|
|
|
import cn.hutool.core.util.ObjectUtil;
|
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
|
import com.glxp.api.annotation.AuthRuleAnnotation;
|
|
|
|
|
import com.glxp.api.annotation.Log;
|
|
|
|
|
import com.glxp.api.constant.BusinessType;
|
|
|
|
|
import com.glxp.api.controller.BaseController;
|
|
|
|
@ -64,6 +65,7 @@ public class SysUserController extends BaseController {
|
|
|
|
|
private DeptService deptService;
|
|
|
|
|
|
|
|
|
|
@GetMapping("/list")
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
public BaseResponse list(FilterAuthUserRequest filterAuthUserRequest, BindingResult bindingResult) {
|
|
|
|
|
|
|
|
|
|
if (bindingResult.hasErrors()) {
|
|
|
|
@ -98,7 +100,6 @@ public class SysUserController extends BaseController {
|
|
|
|
|
authAdminResponse.setDepts(depts);
|
|
|
|
|
}
|
|
|
|
|
authAdminResponse.setRoles(roles);
|
|
|
|
|
authAdminResponse.setPassWord("******");
|
|
|
|
|
return authAdminResponse;
|
|
|
|
|
}).collect(Collectors.toList());
|
|
|
|
|
|
|
|
|
|