提交 | 用户 | age
|
50cacd
|
1 |
package com.hz.his.dto.order; |
W |
2 |
|
|
3 |
import lombok.Data; |
|
4 |
|
|
5 |
import java.math.BigDecimal; |
|
6 |
|
|
7 |
/** |
|
8 |
* 订单其他信息 |
|
9 |
*/ |
|
10 |
@Data |
|
11 |
public class OrderInfoDto { |
|
12 |
|
|
13 |
/** 订单id(OrdersTotal) */ |
|
14 |
private String orderId; |
|
15 |
|
|
16 |
/** 支付流水(第三方支付流水号) */ |
|
17 |
private String payNo; |
|
18 |
|
|
19 |
/** 购买数量 */ |
|
20 |
private Integer buyNum; |
|
21 |
|
|
22 |
/** 活动规则标识 */ |
|
23 |
private String activityId; |
|
24 |
/** 活动规则名称 */ |
|
25 |
private String activityName; |
88e548
|
26 |
/** 是否整单折扣 必填,默认0*/ |
50cacd
|
27 |
private Integer isWholeDiscount; |
88e548
|
28 |
/** 是否员工折扣 必填,默认0*/ |
50cacd
|
29 |
private Integer isEmployeeDiscount; |
88e548
|
30 |
/** 整单折扣/员工折扣(单位:百分比,默认:100) 必填,默认100*/ |
50cacd
|
31 |
private BigDecimal discount; |
W |
32 |
/** 划扣现金总金额(作用:用来计算划扣项目的执行金额,支付方式是现金支付的总金额) */ |
|
33 |
private BigDecimal snapPayTotal=BigDecimal.ZERO; |
97204c
|
34 |
|
F |
35 |
/**是否确认订单*/ |
|
36 |
private Integer isCustomerConfirm; |
49aa57
|
37 |
/**处方订单号*/ |
F |
38 |
private String prescriptionNo; |
|
39 |
/**处方订单id*/ |
|
40 |
private String prescriptionId; |
|
41 |
|
39aec7
|
42 |
/**关联标识类型:0艾芯荟专区*/ |
F |
43 |
private Integer relationType; |
|
44 |
/**关联标识*/ |
|
45 |
private String relationId; |
|
46 |
/**关联名称*/ |
4261ea
|
47 |
private String relationName; |
39aec7
|
48 |
|
50cacd
|
49 |
} |