Commit d01ce3d42a718e7d72ff43878a1528916ca91069
1 parent
f96fd70ae1
Exists in
master
and in
6 other branches
update code
Showing 1 changed file with 1 additions and 8 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/LisFacade.java
View file @
d01ce3d
| ... | ... | @@ -782,14 +782,9 @@ |
| 782 | 782 | query.setSort(" APPLY_TIME DESC "); |
| 783 | 783 | query.setStatus(0); //未推送状态 |
| 784 | 784 | |
| 785 | - | |
| 786 | - | |
| 787 | 785 | Map<String,Object> result = new HashMap<>(); |
| 786 | + List<Map<String,String>> lists = new ArrayList<>(); | |
| 788 | 787 | |
| 789 | - | |
| 790 | - final CopyOnWriteArraySet<String> patientIds = new CopyOnWriteArraySet<>(); | |
| 791 | - List<Map<String,String>> lists = new ArrayList<>(); | |
| 792 | - | |
| 793 | 788 | List<LisReportModel> lises = lisService.queryLisDataByStatus(query); |
| 794 | 789 | if (CollectionUtils.isNotEmpty(lises)) |
| 795 | 790 | { |
| ... | ... | @@ -832,8 +827,6 @@ |
| 832 | 827 | } |
| 833 | 828 | } |
| 834 | 829 | } |
| 835 | - long end2 = System.currentTimeMillis(); | |
| 836 | - patientIds.clear(); | |
| 837 | 830 | |
| 838 | 831 | result.put("list", lists); |
| 839 | 832 | result.put("hasNext",CollectionUtils.isNotEmpty(lises) && lises.size() >= limit ? "true" : "false"); |