From 6c5c4d329a55d2908a1b1ab5619b49f31e648283 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Thu, 16 Jun 2022 15:28:12 +0800 Subject: [PATCH] 20220528 --- src/main/java/cc/mrbird/febs/mall/vo/OrderItemVo.java | 6 ++++++ 1 files changed, 6 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..5355b84 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,9 @@ @ApiModel(value = "OrderListItemVo", description = "订单列表明细返回参数类") public class OrderItemVo { + @ApiModelProperty(value = "skuId") + private Long skuId; + @ApiModelProperty(value = "商品名称") private String goodsName; @@ -32,4 +35,7 @@ @ApiModelProperty(value = "单价") private BigDecimal price; + + @ApiModelProperty(value = "1-普通商品 2-套餐") + private Integer isNormal; } -- Gitblit v1.9.1