diff --git a/youchain-system/src/main/java/com/youchain/basicdata/rest/PointController.java b/youchain-system/src/main/java/com/youchain/basicdata/rest/PointController.java index 99c245d..abcfb17 100644 --- a/youchain-system/src/main/java/com/youchain/basicdata/rest/PointController.java +++ b/youchain-system/src/main/java/com/youchain/basicdata/rest/PointController.java @@ -292,7 +292,7 @@ public class PointController { @PostMapping("/queryPointInfo") @AnonymousAccess public ResponseEntity queryPointInfo(@RequestBody CurrentPage currentPage) { - List pointList= pointService.getPoint(BaseStatus.STORAGE,"1F存储区",currentPage.getCurrentPage(),currentPage.getPageSize()); + List pointList= pointService.getPoint(BaseStatus.STORAGE,"存储区",currentPage.getCurrentPage(),currentPage.getPageSize()); int total=pointService.getPoint(BaseStatus.STORAGE,"1F存储区").size(); JSONObject object=new JSONObject(); object.put("total",total);