lyhzzz 1 month ago
parent
commit
0b88286075

+ 1 - 0
src/main/java/com/fdkankan/fusion/service/impl/CaseTabulationServiceImpl.java

@@ -35,6 +35,7 @@ public class CaseTabulationServiceImpl extends ServiceImpl<ICaseTabulationMapper
     public List<CaseTabulation> getByCaseId(String caseId) {
         LambdaQueryWrapper<CaseTabulation> wrapper = new LambdaQueryWrapper<>();
         wrapper.eq(CaseTabulation::getCaseId,caseId);
+        wrapper.isNull(CaseTabulation::getOverviewId);
         wrapper.orderByDesc(CaseTabulation::getId);
         return this.list(wrapper);
     }