|
@@ -408,7 +408,7 @@ public class PersonInfoController {
|
|
|
@RequestParam(value="position5",defaultValue="") String position5,
|
|
|
@RequestParam(value="pageIndex",defaultValue="1") int pageIndex,
|
|
|
@RequestParam(value="pageSize",defaultValue="20") int pageSize,
|
|
|
- @RequestParam(value="faceBound",defaultValue="") String faceBound,
|
|
|
+ @RequestParam(value="faceBound",defaultValue="") Integer faceBound,
|
|
|
@RequestParam(value="isUploadPhoto",defaultValue="") String isUploadPhoto,
|
|
|
@RequestAttribute String subject){
|
|
|
|
|
@@ -463,7 +463,7 @@ public class PersonInfoController {
|
|
|
searchParams.put("position5",position5);
|
|
|
}
|
|
|
|
|
|
- if(StringUtils.isNotEmpty(faceBound)){
|
|
|
+ if(faceBound != null){
|
|
|
searchParams.put("faceBound",faceBound);
|
|
|
}
|
|
|
|