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

Commit 099c268d authored by 姜秀龙's avatar 姜秀龙

商品增加sputype

parent b264fac4
......@@ -14,6 +14,9 @@ public class KylinArtistProductFrontVo implements Serializable {
@ApiModelProperty("商品SPU ID")
private String spuId;
@ApiModelProperty("商品类型 0-常规 1-数字藏品 2-券类商品")
private Integer spuType;
@ApiModelProperty("商品名称")
private String name;
......
......@@ -175,6 +175,7 @@ public class KylinArtistFrontServiceImpl implements IKylinArtistFrontService {
}
KylinArtistProductFrontVo vo = new KylinArtistProductFrontVo();
vo.setSpuId(goods.getSpuId());
vo.setSpuType(goods.getSpuType());
vo.setName(goods.getName());
vo.setCoverPic(goods.getCoverPic());
vo.setSellPrice(resolveGoodsSellPrice(goods));
......
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