|
@@ -91,7 +91,7 @@ public class AppPersonController {
|
|
|
@GetMapping("/get/job/favorite/page")
|
|
|
@Operation(summary = "获取收藏的招聘职位分页")
|
|
|
public CommonResult<PageResult<AppJobAdvertisedRespVO>> getJobFavoritePage
|
|
|
- (@Valid @RequestBody PageParam reqVO) {
|
|
|
+ (@Valid PageParam reqVO) {
|
|
|
return success(jobIntegrationService.getJobFavoritePage(reqVO));
|
|
|
}
|
|
|
|
|
@@ -99,7 +99,7 @@ public class AppPersonController {
|
|
|
@GetMapping("/get/enterprise/subscribe/page")
|
|
|
@Operation(summary = "获取关注的企业分页")
|
|
|
public CommonResult<PageResult<EnterpriseBaseSimpleRespVO>> getEnterpriseSubscribePage
|
|
|
- (@Valid @RequestBody PageParam reqVO) {
|
|
|
+ (@Valid PageParam reqVO) {
|
|
|
return success(jobIntegrationService.getEnterpriseSubscribePage(reqVO));
|
|
|
}
|
|
|
|