dev-discount
parent
bdb342aefa
commit
c87c53f85a
File diff suppressed because one or more lines are too long
@ -0,0 +1,13 @@ |
|||||||
|
package com.hai.order.model; |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建子订单参数模型 |
||||||
|
* @className: CreateOrderModel |
||||||
|
* @author: HuRui |
||||||
|
* @date: 2022/8/16 |
||||||
|
**/ |
||||||
|
public class CreateOrderChildModel { |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
} |
@ -0,0 +1,23 @@ |
|||||||
|
package com.hai.order.model; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建订单参数模型 |
||||||
|
* @className: CreateOrderModel |
||||||
|
* @author: HuRui |
||||||
|
* @date: 2022/8/16 |
||||||
|
**/ |
||||||
|
public class CreateOrderModel { |
||||||
|
|
||||||
|
/** |
||||||
|
* 用户优惠券关系id |
||||||
|
*/ |
||||||
|
private Long memDiscountId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 子订单参数模型 |
||||||
|
*/ |
||||||
|
private List<CreateOrderChildModel> childModelList; |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue