com.alipay.api.response.AlipayOverseasTaxNeworderStatusSyncResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.overseas.tax.neworder.status.sync response.
*
* @author auto create
* @since 1.0, 2023-07-18 20:57:04
*/
public class AlipayOverseasTaxNeworderStatusSyncResponse extends AlipayResponse {
private static final long serialVersionUID = 1781123397128293892L;
/**
* 纸质退税单号
*/
@ApiField("doc_id")
private String docId;
/**
* 支付宝退税单号
*/
@ApiField("tax_order_no")
private String taxOrderNo;
public void setDocId(String docId) {
this.docId = docId;
}
public String getDocId( ) {
return this.docId;
}
public void setTaxOrderNo(String taxOrderNo) {
this.taxOrderNo = taxOrderNo;
}
public String getTaxOrderNo( ) {
return this.taxOrderNo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy