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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package com.walker.pay.allinpaycloud.pojo;
 
/**
 * 会员绑定支付账户用户标识
 * @author 时克英
 * @date 2023-02-21
 */
public class RequestBindAcct {
 
    public String getBizUserId() {
        return bizUserId;
    }
 
    public void setBizUserId(String bizUserId) {
        this.bizUserId = bizUserId;
    }
 
    public String getOperationType() {
        return operationType;
    }
 
    /**
     * set-绑定
     * query-查询
     * @param operationType
     */
    public void setOperationType(String operationType) {
        this.operationType = operationType;
    }
 
    public String getAcctType() {
        return acctType;
    }
 
    /**
     * 支付账户类型.<p></p>
     * <pre>
     *    weChatPublic-微信公众号
     *    weChatMiniProgram -微信小程序
     *    aliPayService -支付宝生活号
     *    unionPayjs -银联JS
     *
     *    操作类型是“set”必须上送
     * </pre>
     *
     * @param acctType
     */
    public void setAcctType(String acctType) {
        this.acctType = acctType;
    }
 
    public String getAcct() {
        return acct;
    }
 
    /**
     * 支付账户用户标识.<p></p>
     * <pre>
     *     微信公众号支付openid——微信分配
     * 微信小程序支付openid——微信分配
     * 支付宝生活号支付user_id——支付宝分配
     * 银联JS支付user_id——银联分配,可根据【通过授权码(付款码)获取用户ID】接口获取
     * 附:openid示例oUpF8uMuAJO_M2pxb1Q9zNjWeS6o
     * 操作类型是“set”必须上送
     * </pre>
     * @param acct
     */
    public void setAcct(String acct) {
        this.acct = acct;
    }
 
    private String bizUserId;
    private String operationType = "set";
    private String acctType;
    private String acct;
}