package com.walker.pay.allinpaycloud.pojo;
|
|
/**
|
* 提现签约请求数据
|
* @date 2023-02-27
|
*/
|
public class RequestSignAcct {
|
|
public String getBizUserId() {
|
return bizUserId;
|
}
|
|
public void setBizUserId(String bizUserId) {
|
this.bizUserId = bizUserId;
|
}
|
|
public String getSignAcctName() {
|
return signAcctName;
|
}
|
|
/**
|
* 签约户名.
|
* <pre>
|
* 个人会员:名称
|
* 企业会员:
|
* 法人提现,则上送“法人姓名”
|
* 对公户提现,则上送“企业名称”
|
* </pre>
|
* @param signAcctName
|
*/
|
public void setSignAcctName(String signAcctName) {
|
this.signAcctName = signAcctName;
|
}
|
|
public long getJumpPageType() {
|
return jumpPageType;
|
}
|
|
/**
|
* 跳转页面类型.
|
* <pre>
|
* 1-H5页面
|
* 2-小程序页面
|
* 兼容存量模式,不上送默认跳转H5页面
|
* </pre>
|
* @param jumpPageType
|
*/
|
public void setJumpPageType(long jumpPageType) {
|
this.jumpPageType = jumpPageType;
|
}
|
|
public String getJumpUrl() {
|
return jumpUrl;
|
}
|
|
/**
|
* <pre>
|
* 若正常域名或无特殊字符,以http/https开头明文请求,无需加密;
|
* 若含IP地址形式或“#”号,通知地址需要按照敏感字段加密方式加密
|
* ASE加密
|
* 长度不超过117个字符
|
* </pre>
|
* @param jumpUrl
|
*/
|
public void setJumpUrl(String jumpUrl) {
|
this.jumpUrl = jumpUrl;
|
}
|
|
public String getBackUrl() {
|
return backUrl;
|
}
|
|
public void setBackUrl(String backUrl) {
|
this.backUrl = backUrl;
|
}
|
|
public long getSource() {
|
return source;
|
}
|
|
public void setSource(long source) {
|
this.source = source;
|
}
|
|
private String bizUserId;
|
private String signAcctName;
|
private long jumpPageType = 1;
|
private String jumpUrl;
|
private String backUrl;
|
private long source = 1;
|
}
|