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