From b8b21ccb301ebc4e0bd199ddfdae920a95245893 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Thu, 24 Jun 2021 19:23:21 +0800 Subject: [PATCH] Merge branch 'score-shop' of http://120.27.238.55:7000/r/xzx into score-shop --- gc-shop/src/main/java/com/xzx/gc/shop/vo/ViewGoodsVo.java | 14 +++++++++++++- 1 files changed, 13 insertions(+), 1 deletions(-) diff --git a/gc-shop/src/main/java/com/xzx/gc/shop/vo/ViewGoodsVo.java b/gc-shop/src/main/java/com/xzx/gc/shop/vo/ViewGoodsVo.java index d512883..c8f1608 100644 --- a/gc-shop/src/main/java/com/xzx/gc/shop/vo/ViewGoodsVo.java +++ b/gc-shop/src/main/java/com/xzx/gc/shop/vo/ViewGoodsVo.java @@ -36,6 +36,18 @@ @ApiModelProperty(value="商品详情",required=true) private String details; + @ApiModelProperty(value="原价",required=true) + private String originalPrice; + + @ApiModelProperty(value="现价",required=true) + private String presentPrice; + + @ApiModelProperty(value="商品分类ID",required=true) + private String categoryId; + + @ApiModelProperty(value="商品分类名称",required=true) + private String categoryName; + /** * 是否抢购 1-是 2-否 */ @@ -60,7 +72,7 @@ private List<String> goodsImages; @ApiModelProperty(value="积分商品样式") - private List<ScoreGoodsStyleVo> scoreGoodsStyleVos; + private List<ScoreGoodsStyleVo> scoreGoodsStyles; @ApiModelProperty(value="创建人") private String createdBy; -- Gitblit v1.9.1