feat(REQ-3004) - 代运营处理租户的问题

This commit is contained in:
wangli 2024-11-26 17:14:42 +08:00
parent 55e6b86eea
commit bb0fb418b3

View File

@ -55,8 +55,6 @@ public class ExtAxBpmnFormRelationServiceImpl implements ExtAxBpmnFormRelationSe
LambdaQueryWrapper<ExtAxBpmnFormRelation> queryWrapper = new LambdaQueryWrapper<>();
if (StringUtils.hasText(dto.getTenantId())) {
queryWrapper.eq(ExtAxBpmnFormRelation::getTenantId, dto.getTenantId()).or().eq(ExtAxBpmnFormRelation::getTenantId, NO_TENANT_ID);
} else {
queryWrapper.eq(ExtAxBpmnFormRelation::getTenantId, NO_TENANT_ID);
}
return bpmnFormRelationMapper.selectList(queryWrapper);