From e3155bdcb11ca4e22d2bc9e54f96a1aa00c7ad4a Mon Sep 17 00:00:00 2001
From: KKSU <15274802129@163.com>
Date: Tue, 26 Mar 2024 12:28:45 +0800
Subject: [PATCH] 抽奖
---
src/main/java/cc/mrbird/febs/mall/vo/MallGoodsDetailsVo.java | 40 ++++++++++++++++++++++++++++++++++++++++
1 files changed, 40 insertions(+), 0 deletions(-)
diff --git a/src/main/java/cc/mrbird/febs/mall/vo/MallGoodsDetailsVo.java b/src/main/java/cc/mrbird/febs/mall/vo/MallGoodsDetailsVo.java
index f94ff77..f4e2264 100644
--- a/src/main/java/cc/mrbird/febs/mall/vo/MallGoodsDetailsVo.java
+++ b/src/main/java/cc/mrbird/febs/mall/vo/MallGoodsDetailsVo.java
@@ -4,6 +4,7 @@
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
+import java.math.BigDecimal;
import java.util.List;
/**
@@ -23,6 +24,9 @@
@ApiModelProperty(value = "商品名称")
private String goodsName;
+ @ApiModelProperty(value = "商品参数")
+ private String goodsParameter;
+
@ApiModelProperty(value = "商品介绍")
private String goodsIntrodution;
@@ -38,9 +42,45 @@
@ApiModelProperty(value = "是否上架 1-上架 2-下架")
private Integer isSale;
+ @ApiModelProperty(value = "库存")
+ private Integer stock;
+
+ @ApiModelProperty(value = "销量")
+ private Integer volume;
+
+ @ApiModelProperty(value = "商品类型")
+ private Integer goodsType;
+
+ @ApiModelProperty(value = "积分")
+ private BigDecimal score;
+
+ @ApiModelProperty(value = "是否有运费")
+ private Integer hasCarriage;
+
+ @ApiModelProperty(value = "运费")
+ private BigDecimal carriage;
+
+ @ApiModelProperty(value = "1-普通商品 2-套餐")
+ private Integer isNormal;
+
@ApiModelProperty(value = "轮播图")
private List<String> images;
@ApiModelProperty(value = "样式")
private List<GoodsDetailsStyleVo> styles;
+
+ @ApiModelProperty(value = "评论数量")
+ private Integer commentCount;
+ /**
+ * 排序位置
+ */
+ private Integer sortCnt;
+ /**
+ * 积分兑换比例
+ */
+ private Integer scorePercent;
+ /**
+ * 积分兑换比例
+ */
+ private BigDecimal scorePercentNum;
}
--
Gitblit v1.9.1