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