1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.sandu.ximon.admin.dto.wxquerydto;
|
| import lombok.Data;
|
| /**
| * @Author liuhaonan
| * @Date 2022/3/29
| * @Version 1.0
| */
| @Data
| public class amount {
| //总金额
| private Integer total;
| //用户支付金额
| private Integer payer_total;
| //货币类型
| private String currency;
| //用户支付币种
| private String payer_currency;
| }
|
|