xuhy
2023-08-11 3c1223bf3eb6df077b48637a7c93a93246a1a8ae
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
167
168
169
170
171
172
173
174
175
176
177
178
179
package com.stylefeng.guns.modular.system.util.LiuZhouBank;
 
/**
* 回调结果
* @author pzb
* @Date 2022/11/28 20:56
*/
public class ResultNotification {
    /**
     * 响应码
     * 0000000:成功
     * 其他:失败
     */
    private String returnCode;
    /**
     * 响应信息
     */
    private String returnMessage;
    /**
     * 商户号
     */
    private String mchtNo;
    /**
     * 商户名称
     */
    private String mchtName;
    /**
     * 业务结果信息  00 成功  01 失败
     */
    private String resultCode;
    /**
     * 业务结果信息
     */
    private String resultMsg;
    /**
     * 渠道流水号即报文上送的渠道流水号
     */
    private String chnlSeq;
    /**
     * 订单金额
     */
    private String totalFee;
    /**
     * 系统交易日期
     */
    private String txnDate;
    /**
     * 系统交易时间
     */
    private String txnTime;
    /**
     * 系统流水号
     */
    private String txnSeq;
    /**
     * 支付交易渠道 01-微信,02-支付宝,03-云闪付
     */
    private String paytype;
    /**
     * 签名
     */
    private String sign;
    /**
     * 接口响应内容
     */
    private String responseStr;
 
    public String getReturnCode() {
        return returnCode;
    }
 
    public void setReturnCode(String returnCode) {
        this.returnCode = returnCode;
    }
 
    public String getReturnMessage() {
        return returnMessage;
    }
 
    public void setReturnMessage(String returnMessage) {
        this.returnMessage = returnMessage;
    }
 
    public String getMchtNo() {
        return mchtNo;
    }
 
    public void setMchtNo(String mchtNo) {
        this.mchtNo = mchtNo;
    }
 
    public String getMchtName() {
        return mchtName;
    }
 
    public void setMchtName(String mchtName) {
        this.mchtName = mchtName;
    }
 
    public String getResultCode() {
        return resultCode;
    }
 
    public void setResultCode(String resultCode) {
        this.resultCode = resultCode;
    }
 
    public String getResultMsg() {
        return resultMsg;
    }
 
    public void setResultMsg(String resultMsg) {
        this.resultMsg = resultMsg;
    }
 
    public String getChnlSeq() {
        return chnlSeq;
    }
 
    public void setChnlSeq(String chnlSeq) {
        this.chnlSeq = chnlSeq;
    }
 
    public String getTotalFee() {
        return totalFee;
    }
 
    public void setTotalFee(String totalFee) {
        this.totalFee = totalFee;
    }
 
    public String getTxnDate() {
        return txnDate;
    }
 
    public void setTxnDate(String txnDate) {
        this.txnDate = txnDate;
    }
 
    public String getTxnTime() {
        return txnTime;
    }
 
    public void setTxnTime(String txnTime) {
        this.txnTime = txnTime;
    }
 
    public String getTxnSeq() {
        return txnSeq;
    }
 
    public void setTxnSeq(String txnSeq) {
        this.txnSeq = txnSeq;
    }
 
    public String getPaytype() {
        return paytype;
    }
 
    public void setPaytype(String paytype) {
        this.paytype = paytype;
    }
 
    public String getSign() {
        return sign;
    }
 
    public void setSign(String sign) {
        this.sign = sign;
    }
 
    public String getResponseStr() {
        return responseStr;
    }
 
    public void setResponseStr(String responseStr) {
        this.responseStr = responseStr;
    }
}