admin
2021-06-29 0a03971cf8b1ca89f171946ecce8e8e6435b9ec5
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
package org.yeshi.utils.entity.wx;
 
import java.math.BigDecimal;
 
/**
 * 微信支付统一下单参数
 *
 * @author Administrator
 */
public class WXPlaceOrderParams {
    private String orderNo;
    private BigDecimal fee;
    private String openId;
    private String body;
    private String ip;
    private String tradeType;
    private String notifyUrl;
 
    //附加数据-V3接口中使用,支付结果通知中会原样返回
    private String attach;
 
 
    private WXAPPInfo app;
 
    public String getOrderNo() {
        return orderNo;
    }
 
    public void setOrderNo(String orderNo) {
        this.orderNo = orderNo;
    }
 
    public BigDecimal getFee() {
        return fee;
    }
 
    public void setFee(BigDecimal fee) {
        this.fee = fee;
    }
 
    public String getOpenId() {
        return openId;
    }
 
    public void setOpenId(String openId) {
        this.openId = openId;
    }
 
    public String getBody() {
        return body;
    }
 
    public void setBody(String body) {
        this.body = body;
    }
 
    public String getIp() {
        return ip;
    }
 
    public void setIp(String ip) {
        this.ip = ip;
    }
 
    public String getTradeType() {
        return tradeType;
    }
 
    public void setTradeType(String tradeType) {
        this.tradeType = tradeType;
    }
 
    public WXAPPInfo getApp() {
        return app;
    }
 
    public void setApp(WXAPPInfo app) {
        this.app = app;
    }
 
 
    public String getAttach() {
        return attach;
    }
 
    public void setAttach(String attach) {
        this.attach = attach;
    }
 
    public String getNotifyUrl() {
        return notifyUrl;
    }
 
    public void setNotifyUrl(String notifyUrl) {
        this.notifyUrl = notifyUrl;
    }
 
}