From 5bd109cbeb9545bab28a0b2bd267e02bf3752f0e Mon Sep 17 00:00:00 2001
From: Hentua <wangdoubleone@gmail.com>
Date: Tue, 26 Sep 2023 10:01:54 +0800
Subject: [PATCH] fix

---
 src/main/java/cc/mrbird/febs/mall/vo/MallGoodsDetailsVo.java |   34 ++++++++++++++++++++++++++++++++++
 1 files changed, 34 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 25eebaa..3566603 100644
--- a/src/main/java/cc/mrbird/febs/mall/vo/MallGoodsDetailsVo.java
+++ b/src/main/java/cc/mrbird/febs/mall/vo/MallGoodsDetailsVo.java
@@ -71,4 +71,38 @@
 
     @ApiModelProperty(value = "评论数量")
     private Integer commentCount;
+    //运费方式  (1:固定运费 2:运费模板)
+
+    @ApiModelProperty(value = "运费方式  (1:固定运费 2:运费模板)")
+    private Integer carriageType;
+    //运费金额
+
+    @ApiModelProperty(value = "固定运费金额")
+    private BigDecimal carriageAmount;
+    //运费模板ID
+
+    @ApiModelProperty(value = "运费模板ID")
+    private Long carriageRuleId;
+    //重量
+
+    @ApiModelProperty(value = "重量")
+    private BigDecimal goodsWeight;
+
+    @ApiModelProperty(value = "单位")
+    private String unit;
+
+    @ApiModelProperty(value = "1级代理价格")
+    private BigDecimal levelOnePrice;
+
+    @ApiModelProperty(value = "2级代理价格")
+    private BigDecimal levelTwoPrice;
+
+    @ApiModelProperty(value = "3级代理价格")
+    private BigDecimal levelThreePrice;
+
+    @ApiModelProperty(value = "是否收藏")
+    private Integer hasCollect;
+
+    @ApiModelProperty(value = "商品主图")
+    private String mainImage;
 }

--
Gitblit v1.9.1