
com.alipay.api.domain.AlipayEbppInvoiceInfoApplyidQueryModel 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;
/**
* 根据发票申请id查询发票信息
*
* @author auto create
* @since 1.0, 2017-05-09 19:40:03
*/
public class AlipayEbppInvoiceInfoApplyidQueryModel extends AlipayObject {
private static final long serialVersionUID = 1563857652786944364L;
/**
* 申请开票时支付宝返回的申请id,具有全局唯一性。
*/
@ApiField("apply_id")
private String applyId;
public String getApplyId() {
return this.applyId;
}
public void setApplyId(String applyId) {
this.applyId = applyId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy