xiao547607 5 년 전
부모
커밋
940d8d593a
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      web/src/main/java/com/jpsoft/smart/modules/base/controller/PersonInfoController.java

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