com.alipay.api.domain.QueryInvoiceInfoByOuOpenApiDTO Maven / Gradle / Ivy
package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 根据ouCode查询开票信息参数
*
* @author auto create
* @since 1.0, 2024-07-04 16:40:00
*/
public class QueryInvoiceInfoByOuOpenApiDTO extends AlipayObject {
private static final long serialVersionUID = 7522526564376566144L;
/**
* ouCode列表
*/
@ApiListField("ou_code_list")
@ApiField("string")
private List ouCodeList;
public List getOuCodeList() {
return this.ouCodeList;
}
public void setOuCodeList(List ouCodeList) {
this.ouCodeList = ouCodeList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy