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