|
@@ -11,6 +11,7 @@ import com.dragoninfo.dcuc.auth.auth.facade.IRoleAuthInfoFacade;
|
|
|
import com.dragoninfo.dcuc.auth.auth.facade.IRoleInfoFacade;
|
|
|
import com.dragoninfo.dcuc.auth.auth.facade.IStaffAssignAuthInfoFacade;
|
|
|
import com.dragoninfo.dcuc.auth.auth.vo.RoleInfoVO;
|
|
|
+import com.dragoninfo.dcuc.auth.auth.vo.zerotrust.roleauthapply.ApplyRoleInVo;
|
|
|
import com.dragoninfo.dcuc.auth.auth.vo.zerotrust.roleauthapply.RoleAuthApplySaveVo;
|
|
|
import com.dragoninfo.dcuc.auth.sub.dto.AuthUserDTO;
|
|
|
import com.dragoninfo.dcuc.auth.sub.enumresource.JobTypeEnum;
|
|
@@ -301,4 +302,11 @@ public class RoleAuthInfoController {
|
|
|
return getResult(responseStatus);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "角色授权申请角色列表")
|
|
|
+ @PostMapping(value = "apply-role-list")
|
|
|
+ public Result<List<ApplyRoleInVo>> applyRoleList(SearchDTO searchDTO) {
|
|
|
+ List<ApplyRoleInVo> roleList = iRoleAuthInfoFacade.applyRoleList(searchDTO);
|
|
|
+ return Result.success(roleList);
|
|
|
+ }
|
|
|
+
|
|
|
}
|