shikeying
2024-01-11 3b67e947e36133e2a40eb2737b15ea375e157ea0
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
package com.walker.pay.allinpaycloud.pojo;
 
public class RequestConfirmPay {
 
    public String getBizUserId() {
        return bizUserId;
    }
 
    public void setBizUserId(String bizUserId) {
        this.bizUserId = bizUserId;
    }
 
    public String getBizOrderNo() {
        return bizOrderNo;
    }
 
    /**
     * 订单申请的商户订单号(支付订单)
     * @param bizOrderNo
     */
    public void setBizOrderNo(String bizOrderNo) {
        this.bizOrderNo = bizOrderNo;
    }
 
    public String getVerificationCode() {
        return verificationCode;
    }
 
    /**
     * 短信验证码
     * @param verificationCode
     */
    public void setVerificationCode(String verificationCode) {
        this.verificationCode = verificationCode;
    }
 
    public String getConsumerIp() {
        return consumerIp;
    }
 
    /**
     * ip地址<br>
     * 用户公网IP用于风控校验,
     * 注:不能使用“127.0.0.1”“localhost”
     * @param consumerIp
     */
    public void setConsumerIp(String consumerIp) {
        this.consumerIp = consumerIp;
    }
 
    private String bizUserId;
    private String bizOrderNo;
    private String verificationCode;
    private String consumerIp;
}