From 113f3a5d3b843fba68ce50a3ba3255c66ca1e15f Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Tue, 17 Jan 2023 20:13:57 +0800
Subject: [PATCH] 20221227 充值归集
---
src/main/java/cc/mrbird/febs/mall/dto/AddOrderDto.java | 14 ++++++++++----
1 files changed, 10 insertions(+), 4 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..5258765 100644
--- a/src/main/java/cc/mrbird/febs/mall/dto/AddOrderDto.java
+++ b/src/main/java/cc/mrbird/febs/mall/dto/AddOrderDto.java
@@ -16,8 +16,11 @@
public class AddOrderDto {
@NotNull(message = "参数不能为空")
- @ApiModelProperty(value = "地址ID", example = "1")
- private Long addressId;
+ @ApiModelProperty(value = "商品ID", example = "1")
+ private Long goodsId;
+
+ @ApiModelProperty(value = "门店ID", example = "1")
+ private Long shopId;
@ApiModelProperty(value = "订单提交类型", example = "1从购物车提交, 2从商品直接提交")
private Integer type;
@@ -25,7 +28,10 @@
@ApiModelProperty(value = "备注")
private String remark;
- @ApiModelProperty(value = "商品明细")
- private List<AddOrderItemDto> items;
+ @ApiModelProperty(value = "1-普通订单/2-积分订单")
+ private Integer orderType;
+
+ @ApiModelProperty(value = "配送方式 1:快递寄送2:到店自提")
+ private Integer deliverType;
}
--
Gitblit v1.9.1