lyhzzz 1 月之前
父節點
當前提交
0b88286075
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/main/java/com/fdkankan/fusion/service/impl/CaseTabulationServiceImpl.java

+ 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);
     }