From a7c6abad7c9e59285542156c40081fa54e2df2de Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Tue, 20 Dec 2022 17:20:23 +0800
Subject: [PATCH] 20221220 1、每天两点会员星级保证金返还任务 2、每天两点半会员星级更新任务
---
src/main/java/cc/mrbird/febs/mall/vo/OrderItemVo.java | 9 +++++++++
1 files changed, 9 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..29023ef 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,10 @@
@ApiModelProperty(value = "单价")
private BigDecimal price;
+
+ @ApiModelProperty(value = "1-普通商品 2-套餐")
+ private Integer isNormal;
+
+ @ApiModelProperty(value = "商品ID")
+ private Long goodsId;
}
--
Gitblit v1.9.1