com.aliyun.dingtalkbizfinance_1_0.models.QueryReceiptsBaseInfoRequest 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 QueryReceiptsBaseInfoRequest extends TeaModel {
/**
* example:
* abc
*/
@NameInMap("accountantBookId")
public String accountantBookId;
@NameInMap("amountEnd")
public Double amountEnd;
@NameInMap("amountStart")
public Double amountStart;
/**
* example:
* COM_DEFAULT
*/
@NameInMap("companyCode")
public String companyCode;
/**
* example:
* 16000000
*/
@NameInMap("endTime")
public Long endTime;
/**
* example:
* 1
*/
@NameInMap("pageNumber")
public Long pageNumber;
/**
* example:
* 20
*/
@NameInMap("pageSize")
public Long pageSize;
/**
* example:
* 16000000
*/
@NameInMap("startTime")
public Long startTime;
@NameInMap("timeFilterField")
public String timeFilterField;
/**
* example:
* 收款单
*/
@NameInMap("title")
public String title;
@NameInMap("voucherStatus")
public String voucherStatus;
public static QueryReceiptsBaseInfoRequest build(java.util.Map map) throws Exception {
QueryReceiptsBaseInfoRequest self = new QueryReceiptsBaseInfoRequest();
return TeaModel.build(map, self);
}
public QueryReceiptsBaseInfoRequest setAccountantBookId(String accountantBookId) {
this.accountantBookId = accountantBookId;
return this;
}
public String getAccountantBookId() {
return this.accountantBookId;
}
public QueryReceiptsBaseInfoRequest setAmountEnd(Double amountEnd) {
this.amountEnd = amountEnd;
return this;
}
public Double getAmountEnd() {
return this.amountEnd;
}
public QueryReceiptsBaseInfoRequest setAmountStart(Double amountStart) {
this.amountStart = amountStart;
return this;
}
public Double getAmountStart() {
return this.amountStart;
}
public QueryReceiptsBaseInfoRequest setCompanyCode(String companyCode) {
this.companyCode = companyCode;
return this;
}
public String getCompanyCode() {
return this.companyCode;
}
public QueryReceiptsBaseInfoRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public QueryReceiptsBaseInfoRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public QueryReceiptsBaseInfoRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public QueryReceiptsBaseInfoRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public QueryReceiptsBaseInfoRequest setTimeFilterField(String timeFilterField) {
this.timeFilterField = timeFilterField;
return this;
}
public String getTimeFilterField() {
return this.timeFilterField;
}
public QueryReceiptsBaseInfoRequest setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public QueryReceiptsBaseInfoRequest setVoucherStatus(String voucherStatus) {
this.voucherStatus = voucherStatus;
return this;
}
public String getVoucherStatus() {
return this.voucherStatus;
}
}