xiao547607 5 years ago
parent
commit
940d8d593a

+ 2 - 2
web/src/main/java/com/jpsoft/smart/modules/base/controller/PersonInfoController.java

@@ -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);
         }