提交 9a0b414c authored 作者: 李秋林's avatar 李秋林

新增店铺时添加所属战区/系统

上级 adb78041
......@@ -5,7 +5,6 @@ import com.wangxiaolu.promotion.common.redis.RedisKeys;
import com.wangxiaolu.promotion.common.redis.service.RedisCache;
import com.wangxiaolu.promotion.exception.FlowException;
import com.wangxiaolu.promotion.pojo.activity.temporary.dto.PromotionStoreDto;
import com.wangxiaolu.promotion.pojo.activity.temporary.vo.TemporaryClockVo;
import com.wangxiaolu.promotion.result.basedata.R;
import com.wangxiaolu.promotion.result.basedata.RCode;
import com.wangxiaolu.promotion.service.activity.temporary.PromotionStoreCoreService;
......
......@@ -109,6 +109,9 @@ public class PromotionStoreDaoImpl implements PromotionStoreDao {
if (StringUtils.isNotBlank(promotionStoreWrapper.getStoreNameLike())){
lqw.like(PromotionStoreDO::getStoreName,promotionStoreWrapper.getStoreNameLike());
}
if (StringUtils.isNotBlank(promotionStoreWrapper.getStoreName())){
lqw.eq(PromotionStoreDO::getStoreName,promotionStoreWrapper.getStoreName());
}
return lqw;
}
......
......@@ -38,6 +38,11 @@ public class PromotionStoreDO implements Serializable {
*/
private String storePhotoUrl;
/**
* 系统战区名称
*/
private String lineOrgName;
/**
* 系统名称
*/
......
......@@ -35,6 +35,11 @@ public class PromotionStoreDto implements Serializable {
*/
private String storePhotoUrl;
/**
* 系统战区名称
*/
private String lineOrgName;
/**
* 系统名称
*/
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论