com.aliyun.dingtalkhrm_1_0.models.QueryPositionsRequest 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.dingtalkhrm_1_0.models;
import com.aliyun.tea.*;
public class QueryPositionsRequest extends TeaModel {
// 部门id
@NameInMap("deptId")
public Long deptId;
// 职位类别列表
@NameInMap("inCategoryIds")
public java.util.List inCategoryIds;
// 职位id列表
@NameInMap("inPositionIds")
public java.util.List inPositionIds;
// 职位名称
@NameInMap("positionName")
public String positionName;
// 一次查询获取记录数
@NameInMap("maxResults")
public Integer maxResults;
// 偏移量
@NameInMap("nextToken")
public Integer nextToken;
public static QueryPositionsRequest build(java.util.Map map) throws Exception {
QueryPositionsRequest self = new QueryPositionsRequest();
return TeaModel.build(map, self);
}
public QueryPositionsRequest setDeptId(Long deptId) {
this.deptId = deptId;
return this;
}
public Long getDeptId() {
return this.deptId;
}
public QueryPositionsRequest setInCategoryIds(java.util.List inCategoryIds) {
this.inCategoryIds = inCategoryIds;
return this;
}
public java.util.List getInCategoryIds() {
return this.inCategoryIds;
}
public QueryPositionsRequest setInPositionIds(java.util.List inPositionIds) {
this.inPositionIds = inPositionIds;
return this;
}
public java.util.List getInPositionIds() {
return this.inPositionIds;
}
public QueryPositionsRequest setPositionName(String positionName) {
this.positionName = positionName;
return this;
}
public String getPositionName() {
return this.positionName;
}
public QueryPositionsRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public QueryPositionsRequest setNextToken(Integer nextToken) {
this.nextToken = nextToken;
return this;
}
public Integer getNextToken() {
return this.nextToken;
}
}