parent
5f83a7d2e5
commit
18acc34c92
@ -1,4 +1,44 @@ |
||||
package com.hai.order.model.combine; |
||||
|
||||
import com.hai.order.model.CreateOrderModel; |
||||
|
||||
import java.util.List; |
||||
|
||||
public class CombineOrderModel { |
||||
/** |
||||
* 公司id |
||||
*/ |
||||
private Long companyId; |
||||
/** |
||||
* 用户id |
||||
*/ |
||||
private Long userId; |
||||
|
||||
/** |
||||
* 用户名称 |
||||
*/ |
||||
private String userName; |
||||
|
||||
/** |
||||
* 用户手机号 |
||||
*/ |
||||
private String userPhone; |
||||
|
||||
/** |
||||
* 用户优惠券关系id |
||||
*/ |
||||
private Long memDiscountId; |
||||
|
||||
/** |
||||
* 支付积分(金币) |
||||
*/ |
||||
private Integer payGold; |
||||
|
||||
/** |
||||
* 支付密码 |
||||
*/ |
||||
private String payPwd; |
||||
|
||||
List<CreateOrderModel> createOrderModelList; |
||||
|
||||
} |
||||
|
Loading…
Reference in new issue