提交 48ea4b05 authored 作者: 000516's avatar 000516 提交者: Coding

勤策69码模糊匹配;查询门店列表返回门店客户经理与经销商;

Merge Request: 1、由于勤策69码描述规则不同,所以将69码查询改为模糊匹配; 2、小程序后台-查询门店列表返回门店客户经理与经销商;
...@@ -75,7 +75,7 @@ public class QinceProductInfoDaoImpl implements QinceProductInfoDao { ...@@ -75,7 +75,7 @@ public class QinceProductInfoDaoImpl implements QinceProductInfoDao {
private LambdaQueryWrapper<QinceProductInfoDO> buildWrapper(QinceProductInfoDto params) { private LambdaQueryWrapper<QinceProductInfoDO> buildWrapper(QinceProductInfoDto params) {
LambdaQueryWrapper<QinceProductInfoDO> qw = new LambdaQueryWrapper<>(); LambdaQueryWrapper<QinceProductInfoDO> qw = new LambdaQueryWrapper<>();
if (StringUtils.isNotBlank(params.getPrdSpec())) { if (StringUtils.isNotBlank(params.getPrdSpec())) {
qw.eq(QinceProductInfoDO::getPrdSpec, "条码" + params.getPrdSpec()); qw.likeLeft(QinceProductInfoDO::getPrdSpec, params.getPrdSpec());
} }
qw.eq(QinceProductInfoDO::getSaleStatus, 1).eq(QinceProductInfoDO::getStatus, 1).ne(QinceProductInfoDO::getClassName, ""); qw.eq(QinceProductInfoDO::getSaleStatus, 1).eq(QinceProductInfoDO::getStatus, 1).ne(QinceProductInfoDO::getClassName, "");
......
...@@ -105,6 +105,16 @@ public class PromotionStoreDto implements Serializable { ...@@ -105,6 +105,16 @@ public class PromotionStoreDto implements Serializable {
*/ */
private String chargerName; private String chargerName;
/**
* 门店经理
*/
private String storeManager;
/**
* 经销商名称
*/
private String dealersName;
/** /**
* 创建时间 * 创建时间
*/ */
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论