zj
2024-06-03 4afe73cb84c5a609662b8b4ee20693de9b86b9a3
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
package com.nq.vo.pay;
 
import com.nq.utils.PropertiesUtil;
 
public class FlyPayVO {
    public void setPayUrl(String payUrl) {
        this.payUrl = payUrl;
    }
 
    public void setMerchantid(String merchantid) {
        this.merchantid = merchantid;
    }
 
    public void setOrderno(String orderno) {
        this.orderno = orderno;
    }
 
    public void setOrderamount(String orderamount) {
        this.orderamount = orderamount;
    }
 
    public void setPaytype(String paytype) {
        this.paytype = paytype;
    }
 
    public void setOrdercurrency(String ordercurrency) {
        this.ordercurrency = ordercurrency;
    }
 
    public void setServerbackurl(String serverbackurl) {
        this.serverbackurl = serverbackurl;
    }
 
    public void setCallbackurl(String callbackurl) {
        this.callbackurl = callbackurl;
    }
 
    public void setSigntype(String signtype) {
        this.signtype = signtype;
    }
 
    public void setSign(String sign) {
        this.sign = sign;
    }
 
    public boolean equals(Object o) {
        if (o == this) return true;
        if (!(o instanceof FlyPayVO)) return false;
        FlyPayVO other = (FlyPayVO) o;
        if (!other.canEqual(this)) return false;
        Object this$payUrl = getPayUrl(), other$payUrl = other.getPayUrl();
        if ((this$payUrl == null) ? (other$payUrl != null) : !this$payUrl.equals(other$payUrl)) return false;
        Object this$merchantid = getMerchantid(), other$merchantid = other.getMerchantid();
        if ((this$merchantid == null) ? (other$merchantid != null) : !this$merchantid.equals(other$merchantid))
            return false;
        Object this$orderno = getOrderno(), other$orderno = other.getOrderno();
        if ((this$orderno == null) ? (other$orderno != null) : !this$orderno.equals(other$orderno)) return false;
        Object this$orderamount = getOrderamount(), other$orderamount = other.getOrderamount();
        if ((this$orderamount == null) ? (other$orderamount != null) : !this$orderamount.equals(other$orderamount))
            return false;
        Object this$paytype = getPaytype(), other$paytype = other.getPaytype();
        if ((this$paytype == null) ? (other$paytype != null) : !this$paytype.equals(other$paytype)) return false;
        Object this$ordercurrency = getOrdercurrency(), other$ordercurrency = other.getOrdercurrency();
        if ((this$ordercurrency == null) ? (other$ordercurrency != null) : !this$ordercurrency.equals(other$ordercurrency))
            return false;
        Object this$serverbackurl = getServerbackurl(), other$serverbackurl = other.getServerbackurl();
        if ((this$serverbackurl == null) ? (other$serverbackurl != null) : !this$serverbackurl.equals(other$serverbackurl))
            return false;
        Object this$callbackurl = getCallbackurl(), other$callbackurl = other.getCallbackurl();
        if ((this$callbackurl == null) ? (other$callbackurl != null) : !this$callbackurl.equals(other$callbackurl))
            return false;
        Object this$signtype = getSigntype(), other$signtype = other.getSigntype();
        if ((this$signtype == null) ? (other$signtype != null) : !this$signtype.equals(other$signtype)) return false;
        Object this$sign = getSign(), other$sign = other.getSign();
        return !((this$sign == null) ? (other$sign != null) : !this$sign.equals(other$sign));
    }
 
    protected boolean canEqual(Object other) {
        return other instanceof FlyPayVO;
    }
 
    public int hashCode() {
        int PRIME = 59;
        int result = 1;
        Object $payUrl = getPayUrl();
        result = result * 59 + (($payUrl == null) ? 43 : $payUrl.hashCode());
        Object $merchantid = getMerchantid();
        result = result * 59 + (($merchantid == null) ? 43 : $merchantid.hashCode());
        Object $orderno = getOrderno();
        result = result * 59 + (($orderno == null) ? 43 : $orderno.hashCode());
        Object $orderamount = getOrderamount();
        result = result * 59 + (($orderamount == null) ? 43 : $orderamount.hashCode());
        Object $paytype = getPaytype();
        result = result * 59 + (($paytype == null) ? 43 : $paytype.hashCode());
        Object $ordercurrency = getOrdercurrency();
        result = result * 59 + (($ordercurrency == null) ? 43 : $ordercurrency.hashCode());
        Object $serverbackurl = getServerbackurl();
        result = result * 59 + (($serverbackurl == null) ? 43 : $serverbackurl.hashCode());
        Object $callbackurl = getCallbackurl();
        result = result * 59 + (($callbackurl == null) ? 43 : $callbackurl.hashCode());
        Object $signtype = getSigntype();
        result = result * 59 + (($signtype == null) ? 43 : $signtype.hashCode());
        Object $sign = getSign();
        return result * 59 + (($sign == null) ? 43 : $sign.hashCode());
    }
 
    public String toString() {
        return "FlyPayVO(payUrl=" + getPayUrl() + ", merchantid=" + getMerchantid() + ", orderno=" + getOrderno() + ", orderamount=" + getOrderamount() + ", paytype=" + getPaytype() + ", ordercurrency=" + getOrdercurrency() + ", serverbackurl=" + getServerbackurl() + ", callbackurl=" + getCallbackurl() + ", signtype=" + getSigntype() + ", sign=" + getSign() + ")";
    }
 
 
    private String payUrl = PropertiesUtil.getProperty("fly.pay.payurl");
 
    public String getPayUrl() {
        return this.payUrl;
    }
 
    private String orderno;
    private String orderamount;
    private String merchantid = PropertiesUtil.getProperty("fly.pay.merchantid");
    private String paytype;
    private String ordercurrency;
 
    public String getMerchantid() {
        return this.merchantid;
    }
 
    public String getOrderno() {
        return this.orderno;
    }
 
    public String getOrderamount() {
        return this.orderamount;
    }
 
    public String getPaytype() {
        return this.paytype;
    }
 
    public String getOrdercurrency() {
        return this.ordercurrency;
    }
 
    private String serverbackurl = PropertiesUtil.getProperty("fly.pay.serverbackurl");
 
    public String getServerbackurl() {
        return this.serverbackurl;
    }
 
    private String callbackurl = PropertiesUtil.getProperty("fly.pay.callbackurl");
 
    public String getCallbackurl() {
        return this.callbackurl;
    }
 
    private String signtype = "md5";
    private String sign;
 
    public String getSigntype() {
        return this.signtype;
    }
 
    public String getSign() {
        return this.sign;
    }
}