com.alipay.api.request.AlipayEbppPdeductSignAddRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.request;
import java.util.Map;
import com.alipay.api.AlipayRequest;
import com.alipay.api.internal.util.AlipayHashMap;
import com.alipay.api.response.AlipayEbppPdeductSignAddResponse;
import com.alipay.api.AlipayObject;
/**
* ALIPAY API: alipay.ebpp.pdeduct.sign.add request
*
* @author auto create
* @since 1.0, 2017-10-10 14:30:21
*/
public class AlipayEbppPdeductSignAddRequest implements AlipayRequest {
private AlipayHashMap udfParams; // add user-defined text parameters
private String apiVersion="1.0";
/**
* 机构签约代扣来源渠道
PUBLICPLATFORM:服务窗
*/
private String agentChannel;
/**
* 从服务窗发起则为publicId的值
*/
private String agentCode;
/**
* 户号,机构针对于每户的水、电都会有唯一的标识户号
*/
private String billKey;
/**
* 业务类型。
JF:缴水、电、燃气、固话宽带、有线电视、交通罚款费用
WUYE:缴物业费
HK:信用卡还款
TX:手机充值
*/
private String bizType;
/**
* 支付宝缴费系统中的出账机构ID
*/
private String chargeInst;
/**
* 签约类型可为空
*/
private String deductType;
/**
* 扩展字段
*/
private String extendField;
/**
* 通知方式设置,可为空
*/
private String notifyConfig;
/**
* 外部产生的协议ID
*/
private String outAgreementId;
/**
* 户名,户主真实姓名
*/
private String ownerName;
/**
* 支付工具设置,目前可为空
*/
private String payConfig;
/**
* 用户签约时,跳转到支付宝独立密码校验页面,校验成功后会将token和对应的用户ID缓存下来,然后跳回到机构页面生成token带回给机构,机构签约时必须传入token
*/
private String payPasswordToken;
/**
* 商户ID
*/
private String pid;
/**
* 签约到期时间。空表示无限期,一期固定传空。
*/
private String signExpireDate;
/**
* 业务子类型。
WATER:缴水费
ELECTRIC:缴电费
GAS:缴燃气费
COMMUN:缴固话宽带
CATV:缴有线电视费
TRAFFIC:缴交通罚款
WUYE:缴物业费
HK:信用卡还款
CZ:手机充值
*/
private String subBizType;
/**
* 用户ID
*/
private String userId;
public void setAgentChannel(String agentChannel) {
this.agentChannel = agentChannel;
}
public String getAgentChannel() {
return this.agentChannel;
}
public void setAgentCode(String agentCode) {
this.agentCode = agentCode;
}
public String getAgentCode() {
return this.agentCode;
}
public void setBillKey(String billKey) {
this.billKey = billKey;
}
public String getBillKey() {
return this.billKey;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
public String getBizType() {
return this.bizType;
}
public void setChargeInst(String chargeInst) {
this.chargeInst = chargeInst;
}
public String getChargeInst() {
return this.chargeInst;
}
public void setDeductType(String deductType) {
this.deductType = deductType;
}
public String getDeductType() {
return this.deductType;
}
public void setExtendField(String extendField) {
this.extendField = extendField;
}
public String getExtendField() {
return this.extendField;
}
public void setNotifyConfig(String notifyConfig) {
this.notifyConfig = notifyConfig;
}
public String getNotifyConfig() {
return this.notifyConfig;
}
public void setOutAgreementId(String outAgreementId) {
this.outAgreementId = outAgreementId;
}
public String getOutAgreementId() {
return this.outAgreementId;
}
public void setOwnerName(String ownerName) {
this.ownerName = ownerName;
}
public String getOwnerName() {
return this.ownerName;
}
public void setPayConfig(String payConfig) {
this.payConfig = payConfig;
}
public String getPayConfig() {
return this.payConfig;
}
public void setPayPasswordToken(String payPasswordToken) {
this.payPasswordToken = payPasswordToken;
}
public String getPayPasswordToken() {
return this.payPasswordToken;
}
public void setPid(String pid) {
this.pid = pid;
}
public String getPid() {
return this.pid;
}
public void setSignExpireDate(String signExpireDate) {
this.signExpireDate = signExpireDate;
}
public String getSignExpireDate() {
return this.signExpireDate;
}
public void setSubBizType(String subBizType) {
this.subBizType = subBizType;
}
public String getSubBizType() {
return this.subBizType;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getUserId() {
return this.userId;
}
private String terminalType;
private String terminalInfo;
private String prodCode;
private String notifyUrl;
private String returnUrl;
private boolean needEncrypt=false;
private AlipayObject bizModel=null;
public String getNotifyUrl() {
return this.notifyUrl;
}
public void setNotifyUrl(String notifyUrl) {
this.notifyUrl = notifyUrl;
}
public String getReturnUrl() {
return this.returnUrl;
}
public void setReturnUrl(String returnUrl) {
this.returnUrl = returnUrl;
}
public String getApiVersion() {
return this.apiVersion;
}
public void setApiVersion(String apiVersion) {
this.apiVersion = apiVersion;
}
public void setTerminalType(String terminalType){
this.terminalType=terminalType;
}
public String getTerminalType(){
return this.terminalType;
}
public void setTerminalInfo(String terminalInfo){
this.terminalInfo=terminalInfo;
}
public String getTerminalInfo(){
return this.terminalInfo;
}
public void setProdCode(String prodCode) {
this.prodCode=prodCode;
}
public String getProdCode() {
return this.prodCode;
}
public String getApiMethodName() {
return "alipay.ebpp.pdeduct.sign.add";
}
public Map getTextParams() {
AlipayHashMap txtParams = new AlipayHashMap();
txtParams.put("agent_channel", this.agentChannel);
txtParams.put("agent_code", this.agentCode);
txtParams.put("bill_key", this.billKey);
txtParams.put("biz_type", this.bizType);
txtParams.put("charge_inst", this.chargeInst);
txtParams.put("deduct_type", this.deductType);
txtParams.put("extend_field", this.extendField);
txtParams.put("notify_config", this.notifyConfig);
txtParams.put("out_agreement_id", this.outAgreementId);
txtParams.put("owner_name", this.ownerName);
txtParams.put("pay_config", this.payConfig);
txtParams.put("pay_password_token", this.payPasswordToken);
txtParams.put("pid", this.pid);
txtParams.put("sign_expire_date", this.signExpireDate);
txtParams.put("sub_biz_type", this.subBizType);
txtParams.put("user_id", this.userId);
if(udfParams != null) {
txtParams.putAll(this.udfParams);
}
return txtParams;
}
public void putOtherTextParam(String key, String value) {
if(this.udfParams == null) {
this.udfParams = new AlipayHashMap();
}
this.udfParams.put(key, value);
}
public Class getResponseClass() {
return AlipayEbppPdeductSignAddResponse.class;
}
public boolean isNeedEncrypt() {
return this.needEncrypt;
}
public void setNeedEncrypt(boolean needEncrypt) {
this.needEncrypt=needEncrypt;
}
public AlipayObject getBizModel() {
return this.bizModel;
}
public void setBizModel(AlipayObject bizModel) {
this.bizModel=bizModel;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy