记得上下班打卡 | git大法好,push需谨慎

Commit 6813f1fe authored by zhangguobing's avatar zhangguobing

~api:券商品业务-完善创建逻辑;

parent 5576fcf5
...@@ -217,7 +217,11 @@ public class GoblinStoreMgtGoodsCouponAddParam implements Serializable { ...@@ -217,7 +217,11 @@ public class GoblinStoreMgtGoodsCouponAddParam implements Serializable {
GoblinGoodsInfoVo vo = GoblinGoodsInfoVo.getNew(); GoblinGoodsInfoVo vo = GoblinGoodsInfoVo.getNew();
vo.setStoreId(this.getStoreId()); vo.setStoreId(this.getStoreId());
vo.setSpuId(this.getSpuId()); vo.setSpuId(this.getSpuId());
vo.setSpuNo(this.getSpuNo()); if (StringUtils.isBlank(this.getSpuNo())) {
vo.setSpuNo(vo.getSpuId());
} else {
vo.setSpuNo(this.getSpuNo());
}
vo.setSpuType(2); vo.setSpuType(2);
vo.setName(this.getName()); vo.setName(this.getName());
// vo.setSubtitle(this.getSubtitle()); // vo.setSubtitle(this.getSubtitle());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment