From 59c2507d60f31cec6c0a28009603f2adc5cd45b6 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Fri, 21 Jul 2023 21:46:31 +0800 Subject: [PATCH] 订单支付后生成对应的课程单 --- src/main/java/cc/mrbird/febs/mall/vo/MallGoodsDetailsVo.java | 28 ++++++++++++++++++++++++++++ 1 files changed, 28 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..002eaf1 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,32 @@ @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 = "赠送积分") + private BigDecimal levelOnePrice; + + @ApiModelProperty(value = "2级代理价格") + private BigDecimal levelTwoPrice; + + @ApiModelProperty(value = "3级代理价格") + private BigDecimal levelThreePrice; } -- Gitblit v1.9.1