|
@@ -225,6 +225,7 @@ public class PersonInfoController {
|
|
|
@RequestMapping(value = "pageList",method = RequestMethod.POST)
|
|
@RequestMapping(value = "pageList",method = RequestMethod.POST)
|
|
|
public MessageResult<Map> pageList(
|
|
public MessageResult<Map> pageList(
|
|
|
String id,
|
|
String id,
|
|
|
|
|
+ @RequestParam(value="companyId",defaultValue="") String companyId,
|
|
|
@RequestParam(value="companyName",defaultValue="") String companyName,
|
|
@RequestParam(value="companyName",defaultValue="") String companyName,
|
|
|
@RequestParam(value="registerType",defaultValue="") String registerType,
|
|
@RequestParam(value="registerType",defaultValue="") String registerType,
|
|
|
@RequestParam(value="personName",defaultValue="") String personName,
|
|
@RequestParam(value="personName",defaultValue="") String personName,
|
|
@@ -249,6 +250,11 @@ public class PersonInfoController {
|
|
|
searchParams.put("id","%" + id + "%");
|
|
searchParams.put("id","%" + id + "%");
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+
|
|
|
|
|
+ if (StringUtils.isNotEmpty(companyId)) {
|
|
|
|
|
+ searchParams.put("companyId",companyId);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
if (StringUtils.isNotEmpty(companyName)) {
|
|
if (StringUtils.isNotEmpty(companyName)) {
|
|
|
searchParams.put("companyName","%" + companyName + "%");
|
|
searchParams.put("companyName","%" + companyName + "%");
|
|
|
}
|
|
}
|