|
@@ -204,7 +204,8 @@ public class JobInformationInfoController {
|
|
|
@ApiOperation(value="列表")
|
|
|
@RequestMapping(value = "pageList",method = RequestMethod.POST)
|
|
|
public MessageResult<Map> pageList(
|
|
|
- String id,
|
|
|
+ String name,String intendedIndustries,String intendedPosition,String method,
|
|
|
+ String workExperience,String education,String status,
|
|
|
@RequestParam(value="pageIndex",defaultValue="1") int pageIndex,
|
|
|
@RequestParam(value="pageSize",defaultValue="20") int pageSize,
|
|
|
HttpServletRequest request){
|
|
@@ -220,8 +221,32 @@ public class JobInformationInfoController {
|
|
|
List<Sort> sortList = new ArrayList<>();
|
|
|
sortList.add(new Sort("create_time","desc"));
|
|
|
|
|
|
- if (StringUtils.isNotEmpty(id)) {
|
|
|
- searchParams.put("id","%" + id + "%");
|
|
|
+ if (StringUtils.isNotEmpty(name)) {
|
|
|
+ searchParams.put("name","%" + name + "%");
|
|
|
+ }
|
|
|
+
|
|
|
+ if (StringUtils.isNotEmpty(intendedPosition)) {
|
|
|
+ searchParams.put("intendedPosition","%" + intendedPosition + "%");
|
|
|
+ }
|
|
|
+
|
|
|
+ if (StringUtils.isNotEmpty(intendedIndustries)) {
|
|
|
+ searchParams.put("intendedIndustries",intendedIndustries);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (StringUtils.isNotEmpty(method)) {
|
|
|
+ searchParams.put("method",method);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (StringUtils.isNotEmpty(workExperience)) {
|
|
|
+ searchParams.put("workExperience",workExperience);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (StringUtils.isNotEmpty(education)) {
|
|
|
+ searchParams.put("education",education);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (StringUtils.isNotEmpty(status)) {
|
|
|
+ searchParams.put("status",status);
|
|
|
}
|
|
|
|
|
|
|