puzhibing
2023-05-18 53562814add61acfdc02d6b25dae6324f6fd5f92
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
package com.stylefeng.guns.modular.system.util.Tingg.model;
 
/**
 * 支付回调后的响应
 */
public class CallbackResponse {
    /**
     * 数据库中唯一的纤维素ID
     */
    private String checkout_request_id;
    /**
     * 商家为请求提出的唯一Id
     */
    private String merchant_transaction_id;
    /**
     * 状态码,指示请求是否成功接收、失败或接受
     */
    private String status_code;
    /**
     * 状态码解释。
     * 183表示成功
     * 180表示拒绝付款。
     * 188表示收到的款项。
     */
    private String status_description;
    /**
     * 返回的确认响应的唯一标识符。
     */
    private String receipt_number;
 
    public String getCheckout_request_id() {
        return checkout_request_id;
    }
 
    public void setCheckout_request_id(String checkout_request_id) {
        this.checkout_request_id = checkout_request_id;
    }
 
    public String getMerchant_transaction_id() {
        return merchant_transaction_id;
    }
 
    public void setMerchant_transaction_id(String merchant_transaction_id) {
        this.merchant_transaction_id = merchant_transaction_id;
    }
 
    public String getStatus_code() {
        return status_code;
    }
 
    public void setStatus_code(String status_code) {
        this.status_code = status_code;
    }
 
    public String getStatus_description() {
        return status_description;
    }
 
    public void setStatus_description(String status_description) {
        this.status_description = status_description;
    }
 
    public String getReceipt_number() {
        return receipt_number;
    }
 
    public void setReceipt_number(String receipt_number) {
        this.receipt_number = receipt_number;
    }
}