
com.alipay.api.domain.AlipayEbppCommonBillkeyQueryModel 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
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 查询账单业务户号
*
* @author auto create
* @since 1.0, 2017-08-21 17:20:20
*/
public class AlipayEbppCommonBillkeyQueryModel extends AlipayObject {
private static final long serialVersionUID = 6854891752562452735L;
/**
* 业务类型缩写:
JF-缴费
*/
@ApiField("biz_type")
private String bizType;
/**
* 出账机构缩写
*/
@ApiField("charge_inst")
private String chargeInst;
/**
* 子业务类型英文名称:
ELECTRIC-电力
GAS-燃气
WATER-水
*/
@ApiField("sub_biz_type")
private String subBizType;
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
public String getChargeInst() {
return this.chargeInst;
}
public void setChargeInst(String chargeInst) {
this.chargeInst = chargeInst;
}
public String getSubBizType() {
return this.subBizType;
}
public void setSubBizType(String subBizType) {
this.subBizType = subBizType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy