提交 | 用户 | age
|
7d2647
|
1 |
package com.hz.phis.dt.order; |
F |
2 |
|
|
3 |
import lombok.Data; |
|
4 |
|
|
5 |
import java.math.BigDecimal; |
|
6 |
import java.util.Date; |
|
7 |
|
|
8 |
/** |
|
9 |
* 订单支付记录详情转化实体 |
|
10 |
*/ |
|
11 |
@Data |
|
12 |
public class OrderPayRecordDt { |
|
13 |
/**状态(RecordConsumeConstants)*/ |
|
14 |
private Integer status; |
|
15 |
/**总金额*/ |
|
16 |
private BigDecimal consumeTotal; |
|
17 |
/**实付金额*/ |
|
18 |
private BigDecimal consumeMoney; |
|
19 |
/**支付-总金额*/ |
|
20 |
private BigDecimal payMoney; |
|
21 |
/**支付-第三方金额*/ |
|
22 |
private BigDecimal thirdPartyFund; |
|
23 |
/**支付-储值金*/ |
|
24 |
private BigDecimal storedFund; |
|
25 |
/**支付-增值金*/ |
|
26 |
private BigDecimal incrementFund; |
|
27 |
/**退款-总金额*/ |
|
28 |
private BigDecimal refundTotal; |
|
29 |
/**退款-第三方金额*/ |
|
30 |
private BigDecimal thirdPartyRefund; |
|
31 |
/**退款-储值金*/ |
|
32 |
private BigDecimal storedRefund; |
|
33 |
/**退款-增值金*/ |
|
34 |
private BigDecimal incrementRefund; |
|
35 |
/**备注*/ |
|
36 |
private String remarks ; |
|
37 |
/**消费门店标识*/ |
|
38 |
private String shopId; |
|
39 |
/**消费门店名称*/ |
|
40 |
private String shopName; |
|
41 |
/**订单号*/ |
|
42 |
private String orderNo; |
|
43 |
/**下单时间/没有订单默认当前时间*/ |
|
44 |
private Date orderTime; |
|
45 |
/**订单类型(公用)(RecordConsumeConstants)*/ |
|
46 |
private Integer commonType; |
|
47 |
/**订单id(公用)*/ |
|
48 |
private String commonId; |
|
49 |
/**用户id*/ |
|
50 |
private String userId; |
|
51 |
|
|
52 |
} |