From ac75512cd7e4e55619dbe77c489a39e5c2f17c0c Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Fri, 10 Feb 2023 15:57:17 +0800 Subject: [PATCH] 增加样品功能 增加一个规格为样品 --- src/main/java/cc/mrbird/febs/mall/vo/OrderItemVo.java | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/src/main/java/cc/mrbird/febs/mall/vo/OrderItemVo.java b/src/main/java/cc/mrbird/febs/mall/vo/OrderItemVo.java index 0fc75b3..3baa30a 100644 --- a/src/main/java/cc/mrbird/febs/mall/vo/OrderItemVo.java +++ b/src/main/java/cc/mrbird/febs/mall/vo/OrderItemVo.java @@ -15,6 +15,12 @@ @ApiModel(value = "OrderListItemVo", description = "订单列表明细返回参数类") public class OrderItemVo { + @ApiModelProperty(value = "id") + private Long id; + + @ApiModelProperty(value = "skuId") + private Long skuId; + @ApiModelProperty(value = "商品名称") private String goodsName; @@ -32,4 +38,13 @@ @ApiModelProperty(value = "单价") private BigDecimal price; + + @ApiModelProperty(value = "1-普通商品 2-套餐") + private Integer isNormal; + + @ApiModelProperty(value = "商品ID") + private Long goodsId; + + @ApiModelProperty(value = "1:正常 2:退款中3:已退") + private Integer state; } -- Gitblit v1.9.1