com.aliyun.dingtalkbizfinance_1_0.models.QueryReceiptForInvoiceRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkbizfinance_1_0.models;
import com.aliyun.tea.*;
public class QueryReceiptForInvoiceRequest extends TeaModel {
/**
* example:
* abc
*/
@NameInMap("accountantBookId")
public String accountantBookId;
@NameInMap("applyStatusList")
public java.util.List applyStatusList;
@NameInMap("bizStatusList")
public java.util.List bizStatusList;
/**
* example:
* COM_DEFAULT
*/
@NameInMap("companyCode")
public String companyCode;
@NameInMap("endTime")
public Long endTime;
@NameInMap("pageNumber")
public Long pageNumber;
@NameInMap("pageSize")
public Long pageSize;
@NameInMap("receiptStatusList")
public java.util.List receiptStatusList;
@NameInMap("searchParams")
public java.util.Map searchParams;
@NameInMap("startTime")
public Long startTime;
@NameInMap("title")
public String title;
public static QueryReceiptForInvoiceRequest build(java.util.Map map) throws Exception {
QueryReceiptForInvoiceRequest self = new QueryReceiptForInvoiceRequest();
return TeaModel.build(map, self);
}
public QueryReceiptForInvoiceRequest setAccountantBookId(String accountantBookId) {
this.accountantBookId = accountantBookId;
return this;
}
public String getAccountantBookId() {
return this.accountantBookId;
}
public QueryReceiptForInvoiceRequest setApplyStatusList(java.util.List applyStatusList) {
this.applyStatusList = applyStatusList;
return this;
}
public java.util.List getApplyStatusList() {
return this.applyStatusList;
}
public QueryReceiptForInvoiceRequest setBizStatusList(java.util.List bizStatusList) {
this.bizStatusList = bizStatusList;
return this;
}
public java.util.List getBizStatusList() {
return this.bizStatusList;
}
public QueryReceiptForInvoiceRequest setCompanyCode(String companyCode) {
this.companyCode = companyCode;
return this;
}
public String getCompanyCode() {
return this.companyCode;
}
public QueryReceiptForInvoiceRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public QueryReceiptForInvoiceRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public QueryReceiptForInvoiceRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public QueryReceiptForInvoiceRequest setReceiptStatusList(java.util.List receiptStatusList) {
this.receiptStatusList = receiptStatusList;
return this;
}
public java.util.List getReceiptStatusList() {
return this.receiptStatusList;
}
public QueryReceiptForInvoiceRequest setSearchParams(java.util.Map searchParams) {
this.searchParams = searchParams;
return this;
}
public java.util.Map getSearchParams() {
return this.searchParams;
}
public QueryReceiptForInvoiceRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public QueryReceiptForInvoiceRequest setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
}