shikeying
2024-01-11 3b67e947e36133e2a40eb2737b15ea375e157ea0
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.walker.pay.wechat.v2;
 
/**
 * 微信V2版本的订单结果通知对象定义。
 * @author 时克英
 * @date 2023-01-16
 */
public class NotifyOrder {
 
    public long getTotalMoney() {
        return totalMoney;
    }
 
    public void setTotalMoney(long totalMoney) {
        this.totalMoney = totalMoney;
    }
 
    public String getOpenId() {
        return openId;
    }
 
    public void setOpenId(String openId) {
        this.openId = openId;
    }
 
    public String getDeviceInfo() {
        return deviceInfo;
    }
 
    public void setDeviceInfo(String deviceInfo) {
        this.deviceInfo = deviceInfo;
    }
 
    public String getAttach() {
        return attach;
    }
 
    public void setAttach(String attach) {
        this.attach = attach;
    }
 
    private String attach;  // 用户发起订单时,携带的业务数据,微信会原本返回。
    private long totalMoney = 0;
    private String openId;
    private String deviceInfo;
}