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

@@ -70,6 +70,7 @@ public class WmsBonusConfigServiceImpl implements IWmsBonusConfigService {
lqw.eq(bo.getAdjustCoeff() != null, WmsBonusConfig::getAdjustCoeff, bo.getAdjustCoeff());
lqw.eq(bo.getAllocBase() != null, WmsBonusConfig::getAllocBase, bo.getAllocBase());
lqw.eq(bo.getBonusAmount() != null, WmsBonusConfig::getBonusAmount, bo.getBonusAmount());
lqw.eq(StringUtils.isNotBlank(bo.getCreateBy()), WmsBonusConfig::getCreateBy, bo.getCreateBy());
return lqw;
}