|
|
@@ -39,14 +39,17 @@ public class DictInfoController {
|
|
|
@ResourceAuth(value = "areaManager", type = AuthType.Platform, remark = "区域管理_区域列表_160_Menu")
|
|
|
@ResourceAuth(value = "areaManager", type = AuthType.Project, remark = "区域管理_区域列表_160_Menu")
|
|
|
@ResourceAuth(value = "areaManager", type = AuthType.School, remark = "区域管理_区域列表_160_Menu")
|
|
|
+ @ResourceAuth(value = "areaManager", type = AuthType.BusinessMain, remark = "区域管理_区域列表_160_Menu")
|
|
|
+ @ResourceAuth(value = "areaManager", type = AuthType.CommonOrg, remark = "区域管理_区域列表_160_Menu")
|
|
|
@ResourceAuth(value = AuthConstant.SuperAdmin, type = AuthType.Platform, remark = "")
|
|
|
@ResourceAuth(value = AuthConstant.Admin, type = AuthType.Project, remark = "")
|
|
|
+ @ResourceAuth(value = AuthConstant.Admin, type = AuthType.BusinessMain, remark = "")
|
|
|
@ResourceAuth(value = AuthConstant.Admin, type = AuthType.School, remark = "")
|
|
|
+ @ResourceAuth(value = AuthConstant.Admin, type = AuthType.CommonOrg, remark = "")
|
|
|
@ResourceAuth(value = "user", type = AuthType.User)
|
|
|
@Operation(summary = "区域列表-分页查询", description = "区域列表-分页查询")
|
|
|
@RequestMapping(value = {"areaPageManager"}, method = {RequestMethod.POST})
|
|
|
- public ResultContent<Page<DictInfoParam>> areaPageManager(@Parameter(hidden = true) @PageableDefault(page = 0, size = 10) Pageable pageable,
|
|
|
- @Parameter(required = false) DictInfoSearch param) {
|
|
|
+ public ResultContent<Page<DictInfoParam>> areaPageManager(@Parameter(hidden = true) @PageableDefault(page = 0, size = 10) Pageable pageable, @Parameter(required = false) DictInfoSearch param) {
|
|
|
param.setDictInfoType(DictInfoType.AreaType);
|
|
|
return dictInfoService.page(param, pageable);
|
|
|
}
|