com.alipay.api.response.AlipayEbppBillGetResponse 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.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.ebpp.bill.get response.
*
* @author auto create
* @since 1.0, 2017-06-30 10:54:34
*/
public class AlipayEbppBillGetResponse extends AlipayResponse {
private static final long serialVersionUID = 8719616989425246386L;
/**
* 支付宝的业务订单号,具有唯一性。
*/
@ApiField("alipay_order_no")
private String alipayOrderNo;
/**
* 账单的账期,例如201203表示2012年3月的账单。
*/
@ApiField("bill_date")
private String billDate;
/**
* 账单单据号,例如水费单号,手机号,电费号,信用卡卡号。没有唯一性要求。
*/
@ApiField("bill_key")
private String billKey;
/**
* 支付宝给每个出账机构指定了一个对应的英文短名称来唯一表示该收费单位。
*/
@ApiField("charge_inst")
private String chargeInst;
/**
* 出账机构中文名称。
*/
@ApiField("charge_inst_name")
private String chargeInstName;
/**
* 输出机构的业务流水号,需要保证唯一性。
*/
@ApiField("merchant_order_no")
private String merchantOrderNo;
/**
* 账单的状态。 INIT:等待付款,SUCCESS:成功,FAILED:失败。
*/
@ApiField("order_status")
private String orderStatus;
/**
* 支付宝订单类型。公共事业缴纳JF,信用卡还款HK
*/
@ApiField("order_type")
private String orderType;
/**
* 拥有该账单的用户姓名
*/
@ApiField("owner_name")
private String ownerName;
/**
* 缴费金额。用户支付的总金额。单位为:RMB Yuan。取值范围为[0.01,100000000.00],精确到小数点后两位。
*/
@ApiField("pay_amount")
private String payAmount;
/**
* 付款时间
*/
@ApiField("pay_time")
private String payTime;
/**
* 账单的服务费
*/
@ApiField("service_amount")
private String serviceAmount;
/**
* 子业务类型是业务类型的下一级概念,例如:WATER表示JF下面的水费,ELECTRIC表示JF下面的电费,GAS表示JF下面的燃气费。
*/
@ApiField("sub_order_type")
private String subOrderType;
/**
* 交通违章地点,sub_order_type=TRAFFIC时有值
*/
@ApiField("traffic_location")
private String trafficLocation;
/**
* 违章行为,sub_order_type=TRAFFIC时有值。
*/
@ApiField("traffic_regulations")
private String trafficRegulations;
public void setAlipayOrderNo(String alipayOrderNo) {
this.alipayOrderNo = alipayOrderNo;
}
public String getAlipayOrderNo( ) {
return this.alipayOrderNo;
}
public void setBillDate(String billDate) {
this.billDate = billDate;
}
public String getBillDate( ) {
return this.billDate;
}
public void setBillKey(String billKey) {
this.billKey = billKey;
}
public String getBillKey( ) {
return this.billKey;
}
public void setChargeInst(String chargeInst) {
this.chargeInst = chargeInst;
}
public String getChargeInst( ) {
return this.chargeInst;
}
public void setChargeInstName(String chargeInstName) {
this.chargeInstName = chargeInstName;
}
public String getChargeInstName( ) {
return this.chargeInstName;
}
public void setMerchantOrderNo(String merchantOrderNo) {
this.merchantOrderNo = merchantOrderNo;
}
public String getMerchantOrderNo( ) {
return this.merchantOrderNo;
}
public void setOrderStatus(String orderStatus) {
this.orderStatus = orderStatus;
}
public String getOrderStatus( ) {
return this.orderStatus;
}
public void setOrderType(String orderType) {
this.orderType = orderType;
}
public String getOrderType( ) {
return this.orderType;
}
public void setOwnerName(String ownerName) {
this.ownerName = ownerName;
}
public String getOwnerName( ) {
return this.ownerName;
}
public void setPayAmount(String payAmount) {
this.payAmount = payAmount;
}
public String getPayAmount( ) {
return this.payAmount;
}
public void setPayTime(String payTime) {
this.payTime = payTime;
}
public String getPayTime( ) {
return this.payTime;
}
public void setServiceAmount(String serviceAmount) {
this.serviceAmount = serviceAmount;
}
public String getServiceAmount( ) {
return this.serviceAmount;
}
public void setSubOrderType(String subOrderType) {
this.subOrderType = subOrderType;
}
public String getSubOrderType( ) {
return this.subOrderType;
}
public void setTrafficLocation(String trafficLocation) {
this.trafficLocation = trafficLocation;
}
public String getTrafficLocation( ) {
return this.trafficLocation;
}
public void setTrafficRegulations(String trafficRegulations) {
this.trafficRegulations = trafficRegulations;
}
public String getTrafficRegulations( ) {
return this.trafficRegulations;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy