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

Commit e0f82eca authored by 姜秀龙's avatar 姜秀龙

Merge branch 'refs/heads/jxl-yirenhebing' into test-ecs

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