From 7cac09fcadbb53fc0441d738bfd336555b8c16ab Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Mon, 30 Oct 2023 16:23:40 +0800
Subject: [PATCH] 用户收益列表
---
src/main/java/cc/mrbird/febs/mall/dto/AddOrderDto.java | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/src/main/java/cc/mrbird/febs/mall/dto/AddOrderDto.java b/src/main/java/cc/mrbird/febs/mall/dto/AddOrderDto.java
index 4bf68c5..5940ee7 100644
--- a/src/main/java/cc/mrbird/febs/mall/dto/AddOrderDto.java
+++ b/src/main/java/cc/mrbird/febs/mall/dto/AddOrderDto.java
@@ -19,12 +19,21 @@
@ApiModelProperty(value = "地址ID", example = "1")
private Long addressId;
+ @ApiModelProperty(value = "门店ID", example = "1")
+ private Long shopId;
+
@ApiModelProperty(value = "订单提交类型", example = "1从购物车提交, 2从商品直接提交")
private Integer type;
@ApiModelProperty(value = "备注")
private String remark;
+ @ApiModelProperty(value = "1-普通订单/2-积分订单")
+ private Integer orderType;
+
+ @ApiModelProperty(value = "配送方式 1:快递寄送2:到店自提")
+ private Integer deliverType;
+
@ApiModelProperty(value = "商品明细")
private List<AddOrderItemDto> items;
--
Gitblit v1.9.1