1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| package cn.lili.modules.payment.kit.plugin.wechat.model;
|
| import lombok.Data;
| import lombok.experimental.Accessors;
|
| /**
| * 统一下单-订单金额
| *
| * @author Chopper
| * @since 2020/12/17 17:44
| */
| @Data
| @Accessors(chain = true)
| public class Amount {
|
| /**
| * 总金额
| */
| private Integer total;
|
| /**
| * 货币类型
| */
| private String currency = "CNY";
|
| /**
| * 退款金额
| */
| private Integer refund;
| }
|
|