Commit b914bb6c6f19750d8953b4b393b52b5ef7dfe35c
1 parent
12c6f93303
Exists in
master
and in
6 other branches
update
Showing 1 changed file with 2 additions and 4 deletions
platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/LisServiceImpl.java
View file @
b914bb6
... | ... | @@ -147,12 +147,10 @@ |
147 | 147 | for(LisReportModel model : lisList) |
148 | 148 | { |
149 | 149 | List<LisReportModel> dbLis = masterLisMapper.queryLisDataByLisIdAndHid(model); |
150 | - if (!CollectionUtils.isEmpty(dbLis)) | |
150 | + if (CollectionUtils.isEmpty(dbLis)) | |
151 | 151 | { |
152 | - System.out.println("=======================" + model.getLisId()); | |
152 | + masterLisMapper.saveLisData(model); | |
153 | 153 | } |
154 | - | |
155 | - masterLisMapper.saveLisData(model); | |
156 | 154 | } |
157 | 155 | countDownLatch.countDown(); |
158 | 156 | } |