feat(wms): 添加创建人筛选条件到奖金配置查询

- 在WmsBonusConfigServiceImpl中添加createBy字段的等值查询条件
- 在WmsBonusPoolServiceImpl中添加createBy字段的等值查询条件
- 在WmsPostCoeffConfigServiceImpl中添加createBy字段的等值查询条件
- 使用StringUtils.isNotBlank验证createBy参数非空后进行查询
- 统一了三个服务类中的查询逻辑实现
This commit is contained in:
2026-05-08 16:32:27 +08:00
parent 27f20057eb
commit 2260058c63
3 changed files with 3 additions and 0 deletions

View File

@@ -64,6 +64,7 @@ public class WmsPostCoeffConfigServiceImpl implements IWmsPostCoeffConfigService
lqw.like(StringUtils.isNotBlank(bo.getPostName()), WmsPostCoeffConfig::getPostName, bo.getPostName());
lqw.eq(bo.getDutyCoeff() != null, WmsPostCoeffConfig::getDutyCoeff, bo.getDutyCoeff());
lqw.eq(bo.getBaseCoeff() != null, WmsPostCoeffConfig::getBaseCoeff, bo.getBaseCoeff());
lqw.eq(StringUtils.isNotBlank(bo.getCreateBy()), WmsPostCoeffConfig::getCreateBy, bo.getCreateBy());
return lqw;
}