Commit 717d6c35145501633357088885d9fc56539d3e41
1 parent
579390c017
Exists in
master
and in
1 other branch
code update
Showing 1 changed file with 1 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java
View file @
717d6c3
... | ... | @@ -1197,7 +1197,7 @@ |
1197 | 1197 | |
1198 | 1198 | List<Map<String,Object>> list = JdbcUtil.getListDataBySql(sql); |
1199 | 1199 | |
1200 | - Integer count = (Integer)JdbcUtil.getOralceSingleObjBySql(countSql); | |
1200 | + Integer count = Integer.parseInt(String.valueOf(JdbcUtil.getOralceSingleObjBySql(countSql))); | |
1201 | 1201 | BaseListResponse listResponse= new BaseListResponse(); |
1202 | 1202 | listResponse.setData(list); |
1203 | 1203 |