BUG修复

This commit is contained in:
pengjie 2024-04-28 18:59:31 +08:00
parent 8faf5b4e53
commit 64938bc038

View File

@ -59,7 +59,7 @@ public class EnterpriseScoreServiceImpl extends ServiceImpl<EnterpriseScoreMappe
wrapper.lambda().eq(EnterpriseScore::getEnterpriseType, enterpriseType);
}
if (StringUtils.isNotBlank(enterpriseName)) {
wrapper.like("p.enterprise_name", enterpriseName);
wrapper.like("a.enterprise_name", enterpriseName);
}
if (scoreFlag != null && scoreFlag == 1) {
wrapper.lambda().isNotNull(EnterpriseScore::getScore);