From 03b71085ceeedd3b8484a2ce8752d4eb62c6ef31 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Thu, 22 Sep 2022 16:24:30 +0800
Subject: [PATCH] 20220902
---
src/main/java/cc/mrbird/febs/mall/vo/OrderItemVo.java | 12 ++++++++++++
1 files changed, 12 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 0acf05d..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,9 @@
@ApiModel(value = "OrderListItemVo", description = "订单列表明细返回参数类")
public class OrderItemVo {
+ @ApiModelProperty(value = "id")
+ private Long id;
+
@ApiModelProperty(value = "skuId")
private Long skuId;
@@ -35,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