![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkindustry_1_0.models.QueryAllDoctorsResponseBody 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.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class QueryAllDoctorsResponseBody extends TeaModel {
@NameInMap("content")
public java.util.List content;
/**
* This parameter is required.
*/
@NameInMap("currentPage")
public Integer currentPage;
/**
* This parameter is required.
*/
@NameInMap("totalCount")
public Long totalCount;
/**
* This parameter is required.
*
* example:
* 32
*/
@NameInMap("totalPages")
public Integer totalPages;
public static QueryAllDoctorsResponseBody build(java.util.Map map) throws Exception {
QueryAllDoctorsResponseBody self = new QueryAllDoctorsResponseBody();
return TeaModel.build(map, self);
}
public QueryAllDoctorsResponseBody setContent(java.util.List content) {
this.content = content;
return this;
}
public java.util.List getContent() {
return this.content;
}
public QueryAllDoctorsResponseBody setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public QueryAllDoctorsResponseBody setTotalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Long getTotalCount() {
return this.totalCount;
}
public QueryAllDoctorsResponseBody setTotalPages(Integer totalPages) {
this.totalPages = totalPages;
return this;
}
public Integer getTotalPages() {
return this.totalPages;
}
public static class QueryAllDoctorsResponseBodyContent extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1758
*/
@NameInMap("assessGroupId")
public String assessGroupId;
/**
* This parameter is required.
*
* example:
* 张三组
*/
@NameInMap("assessGroupName")
public String assessGroupName;
/**
* This parameter is required.
*
* example:
* 1312312321
*/
@NameInMap("deptCode")
public String deptCode;
/**
* This parameter is required.
*
* example:
* 3
*/
@NameInMap("deptType")
public String deptType;
/**
* This parameter is required.
*
* example:
* 2021-06-08 21:57:10
*/
@NameInMap("gmtCreateStr")
public String gmtCreateStr;
/**
* This parameter is required.
*
* example:
* 2021-06-08 21:57:10
*/
@NameInMap("gmtModifiedStr")
public String gmtModifiedStr;
/**
* This parameter is required.
*
* example:
* 123345
*/
@NameInMap("id")
public Long id;
/**
* This parameter is required.
*
* example:
* 0001
*/
@NameInMap("jobNum")
public String jobNum;
/**
* This parameter is required.
*
* example:
* 0
*/
@NameInMap("status")
public Integer status;
/**
* This parameter is required.
*
* example:
* u0398812938821
*/
@NameInMap("uid")
public String uid;
/**
* This parameter is required.
*
* example:
* aaa12312312
*/
@NameInMap("userCode")
public String userCode;
/**
* This parameter is required.
*
* example:
* 用户名称
*/
@NameInMap("userName")
public String userName;
public static QueryAllDoctorsResponseBodyContent build(java.util.Map map) throws Exception {
QueryAllDoctorsResponseBodyContent self = new QueryAllDoctorsResponseBodyContent();
return TeaModel.build(map, self);
}
public QueryAllDoctorsResponseBodyContent setAssessGroupId(String assessGroupId) {
this.assessGroupId = assessGroupId;
return this;
}
public String getAssessGroupId() {
return this.assessGroupId;
}
public QueryAllDoctorsResponseBodyContent setAssessGroupName(String assessGroupName) {
this.assessGroupName = assessGroupName;
return this;
}
public String getAssessGroupName() {
return this.assessGroupName;
}
public QueryAllDoctorsResponseBodyContent setDeptCode(String deptCode) {
this.deptCode = deptCode;
return this;
}
public String getDeptCode() {
return this.deptCode;
}
public QueryAllDoctorsResponseBodyContent setDeptType(String deptType) {
this.deptType = deptType;
return this;
}
public String getDeptType() {
return this.deptType;
}
public QueryAllDoctorsResponseBodyContent setGmtCreateStr(String gmtCreateStr) {
this.gmtCreateStr = gmtCreateStr;
return this;
}
public String getGmtCreateStr() {
return this.gmtCreateStr;
}
public QueryAllDoctorsResponseBodyContent setGmtModifiedStr(String gmtModifiedStr) {
this.gmtModifiedStr = gmtModifiedStr;
return this;
}
public String getGmtModifiedStr() {
return this.gmtModifiedStr;
}
public QueryAllDoctorsResponseBodyContent setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public QueryAllDoctorsResponseBodyContent setJobNum(String jobNum) {
this.jobNum = jobNum;
return this;
}
public String getJobNum() {
return this.jobNum;
}
public QueryAllDoctorsResponseBodyContent setStatus(Integer status) {
this.status = status;
return this;
}
public Integer getStatus() {
return this.status;
}
public QueryAllDoctorsResponseBodyContent setUid(String uid) {
this.uid = uid;
return this;
}
public String getUid() {
return this.uid;
}
public QueryAllDoctorsResponseBodyContent setUserCode(String userCode) {
this.userCode = userCode;
return this;
}
public String getUserCode() {
return this.userCode;
}
public QueryAllDoctorsResponseBodyContent setUserName(String userName) {
this.userName = userName;
return this;
}
public String getUserName() {
return this.userName;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy