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;
|
}
|