|
@@ -303,7 +303,9 @@ public class RecruiterApiController {
|
|
|
searchParams.put("id","%" + id + "%");
|
|
|
}
|
|
|
|
|
|
- searchParams.put("type",type);
|
|
|
+ if (StringUtils.isNotEmpty(id)) {
|
|
|
+ searchParams.put("type",type);
|
|
|
+ }
|
|
|
|
|
|
Page<Map> page = resumeService.foundJobManagement(searchParams,pageIndex,pageSize,true,sortList);
|
|
|
|