|
@@ -232,9 +232,6 @@ public class RecruiterApiController {
|
|
|
|
|
|
@PostMapping("loadInterestList")
|
|
@PostMapping("loadInterestList")
|
|
@ApiOperation(value = "招聘方[对您感兴趣]")
|
|
@ApiOperation(value = "招聘方[对您感兴趣]")
|
|
- @ApiImplicitParams({
|
|
|
|
- @ApiImplicitParam(name = "id", value = "id", required = true, paramType = "query")
|
|
|
|
- })
|
|
|
|
public MessageResult<Map> loadInterestList(
|
|
public MessageResult<Map> loadInterestList(
|
|
String id,String token,
|
|
String id,String token,
|
|
@RequestParam(value="pageIndex",defaultValue="1") int pageIndex,
|
|
@RequestParam(value="pageIndex",defaultValue="1") int pageIndex,
|
|
@@ -264,7 +261,6 @@ public class RecruiterApiController {
|
|
@PostMapping("loadJobManagement")
|
|
@PostMapping("loadJobManagement")
|
|
@ApiOperation(value = "招聘方[求职管理]")
|
|
@ApiOperation(value = "招聘方[求职管理]")
|
|
@ApiImplicitParams({
|
|
@ApiImplicitParams({
|
|
- @ApiImplicitParam(name = "id", value = "id", required = true, paramType = "query"),
|
|
|
|
@ApiImplicitParam(name = "type", value = "类型(1:已投递,2:邀沟通,3:邀面试,4:邀入职,5:已入职,6:不合适)", required = false, paramType = "query")
|
|
@ApiImplicitParam(name = "type", value = "类型(1:已投递,2:邀沟通,3:邀面试,4:邀入职,5:已入职,6:不合适)", required = false, paramType = "query")
|
|
})
|
|
})
|
|
public MessageResult<Map> loadJobManagement(
|
|
public MessageResult<Map> loadJobManagement(
|
|
@@ -285,9 +281,7 @@ public class RecruiterApiController {
|
|
searchParams.put("id","%" + id + "%");
|
|
searchParams.put("id","%" + id + "%");
|
|
}
|
|
}
|
|
|
|
|
|
- if (StringUtils.isNotEmpty(type)) {
|
|
|
|
- searchParams.put("type",type);
|
|
|
|
- }
|
|
|
|
|
|
+ searchParams.put("type",type);
|
|
|
|
|
|
Page<Map> page = resumeService.foundJobManagement(searchParams,pageIndex,pageSize,true,sortList);
|
|
Page<Map> page = resumeService.foundJobManagement(searchParams,pageIndex,pageSize,true,sortList);
|
|
|
|
|