liulin
2025-07-02 b9f0f641b85bbbfe74fc23efe4f4965586d9e3af
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;
    }
}