1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.lunhan.water.common.wechat.req;
|
| public class CreatePay_Amount {
| /**
| * 订单总金额,单位为分 示例值:100
| */
| private Long total;
|
| public Long getTotal() {
| return total;
| }
|
| public void setTotal(Long total) {
| this.total = total;
| }
| }
|
|