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
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
package com.stylefeng.guns.modular.system.util.Tingg.model;
 
import lombok.Data;
 
/**
 * @author chenza
 * @date 2023/3/14 11:36
 */
 
@Data
public class TinggRequest {
    /**
     * 国家代码,例如:"NG"
     */
    private String countryCode;
    /**
     * 功能,例如:"BEEP.postPayment"
     */
    private String function;
    /**
     * 用户名称
     */
    private String username;
    /**
     * 用户密码
     */
    private String password;
    /**
     * 服务代码,例如:"NG-BANK-PAYOUT"
     */
    private String serviceCode;
    /**
     * MSISDN,例如:"256700000000"
     */
    private String msisdn;
    /**
     * 账号,例如:"00072186"
     */
    private String accountNumber;
    /**
     * 付款人交易编号,例如:"yourUniqueID"
     */
    private String payerTransactionID;
    /**
     * 金额,例如:50000
     */
    private Long amount;
    /**
     * 备注,例如:"Bank Payout"
     */
    private String narration;
    /**
     * 收到付款的日期
     */
    private String datePaymentReceived;
    /**
     * 回调网址,例如:"https://yourCallBackUrl.com/receivePaymentStatus"
     */
    private String callbackUrl;
    /**
     * 目的地银行代码,例如:"000012"
     */
    private String destinationBankCode;
    /**
     * 目标账户名称,例如:"Shem B. Mwangi"
     */
    private String destinationAccountName;
    /**
     * 目标账户号码,例如:"00072186"
     */
    private String destinationAccountNo;
    /**
     * 目的地银行,例如:"StanbicIBTC Bank"
     */
    private String destinationBank;
    /**
     * 支付方式,例如:"BANK"
     */
    private String paymentMode;
    /**
     * 货币代码,例如: "NGN"
     */
    private String currencyCode;
    /**
     * 客户名称,例如:"Shem B. Mwangi"
     */
    private String customerNames;
    /**
     * 发票编码
     */
    private String  invoiceNumber;
    /**
     * 标识
     */
    private String  hubID;
 
}