com.aliyun.dingtalkokr_1_0.models.OkrPeriodsRequest 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.dingtalkokr_1_0.models;
import com.aliyun.tea.*;
public class OkrPeriodsRequest extends TeaModel {
/**
* example:
* dingOKR
*/
@NameInMap("goodsCode")
public String goodsCode;
/**
* example:
* 1
*/
@NameInMap("pageNumber")
public Long pageNumber;
/**
* example:
* 10
*/
@NameInMap("pageSize")
public Long pageSize;
/**
* example:
* 0
*/
@NameInMap("status")
public Long status;
public static OkrPeriodsRequest build(java.util.Map map) throws Exception {
OkrPeriodsRequest self = new OkrPeriodsRequest();
return TeaModel.build(map, self);
}
public OkrPeriodsRequest setGoodsCode(String goodsCode) {
this.goodsCode = goodsCode;
return this;
}
public String getGoodsCode() {
return this.goodsCode;
}
public OkrPeriodsRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public OkrPeriodsRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public OkrPeriodsRequest setStatus(Long status) {
this.status = status;
return this;
}
public Long getStatus() {
return this.status;
}
}