|
@@ -198,10 +198,11 @@ public class RecruiterApiController {
|
|
|
@PostMapping("loadJobManagement")
|
|
@PostMapping("loadJobManagement")
|
|
|
@ApiOperation(value = "招聘方[求职管理]")
|
|
@ApiOperation(value = "招聘方[求职管理]")
|
|
|
@ApiImplicitParams({
|
|
@ApiImplicitParams({
|
|
|
- @ApiImplicitParam(name = "id", value = "id", required = true, paramType = "query")
|
|
|
|
|
|
|
+ @ApiImplicitParam(name = "id", value = "id", required = true, paramType = "query"),
|
|
|
|
|
+ @ApiImplicitParam(name = "type", value = "类型(1:已投递,2:邀沟通,3:邀面试,4:邀入职,5:已入职,6:不合适)", required = false, paramType = "query")
|
|
|
})
|
|
})
|
|
|
public MessageResult<Map> loadJobManagement(
|
|
public MessageResult<Map> loadJobManagement(
|
|
|
- String id,String token,
|
|
|
|
|
|
|
+ String id,String token,String type,
|
|
|
@RequestParam(value="pageIndex",defaultValue="1") int pageIndex,
|
|
@RequestParam(value="pageIndex",defaultValue="1") int pageIndex,
|
|
|
@RequestParam(value="pageSize",defaultValue="20") int pageSize,
|
|
@RequestParam(value="pageSize",defaultValue="20") int pageSize,
|
|
|
@RequestAttribute String subject) {
|
|
@RequestAttribute String subject) {
|
|
@@ -218,6 +219,8 @@ public class RecruiterApiController {
|
|
|
searchParams.put("id","%" + id + "%");
|
|
searchParams.put("id","%" + id + "%");
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ searchParams.put("type",type);
|
|
|
|
|
+
|
|
|
Page<Map> page = resumeService.foundJobManagement(searchParams,pageIndex,pageSize,true,sortList);
|
|
Page<Map> page = resumeService.foundJobManagement(searchParams,pageIndex,pageSize,true,sortList);
|
|
|
|
|
|
|
|
msgResult.setResult(true);
|
|
msgResult.setResult(true);
|