com.aliyun.dingtalkindustry_1_0.models.QueryHospitalRolesResponseBody 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 QueryHospitalRolesResponseBody extends TeaModel {
@NameInMap("content")
public java.util.List content;
public static QueryHospitalRolesResponseBody build(java.util.Map map) throws Exception {
QueryHospitalRolesResponseBody self = new QueryHospitalRolesResponseBody();
return TeaModel.build(map, self);
}
public QueryHospitalRolesResponseBody setContent(java.util.List content) {
this.content = content;
return this;
}
public java.util.List getContent() {
return this.content;
}
public static class QueryHospitalRolesResponseBodyContent extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("gmtCreate")
public String gmtCreate;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("id")
public Long id;
/**
* This parameter is required.
*
* example:
* 0
*/
@NameInMap("isDeleted")
public Long isDeleted;
/**
* This parameter is required.
*
* example:
* 0
*/
@NameInMap("readOnly")
public Long readOnly;
/**
* This parameter is required.
*/
@NameInMap("remark")
public String remark;
/**
* This parameter is required.
*
* example:
* sys_admin
*/
@NameInMap("roleCode")
public String roleCode;
/**
* This parameter is required.
*
* example:
* 系统管理员
*/
@NameInMap("roleName")
public String roleName;
/**
* This parameter is required.
*
* example:
* 0
*/
@NameInMap("sort")
public Long sort;
public static QueryHospitalRolesResponseBodyContent build(java.util.Map map) throws Exception {
QueryHospitalRolesResponseBodyContent self = new QueryHospitalRolesResponseBodyContent();
return TeaModel.build(map, self);
}
public QueryHospitalRolesResponseBodyContent setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public QueryHospitalRolesResponseBodyContent setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public QueryHospitalRolesResponseBodyContent setIsDeleted(Long isDeleted) {
this.isDeleted = isDeleted;
return this;
}
public Long getIsDeleted() {
return this.isDeleted;
}
public QueryHospitalRolesResponseBodyContent setReadOnly(Long readOnly) {
this.readOnly = readOnly;
return this;
}
public Long getReadOnly() {
return this.readOnly;
}
public QueryHospitalRolesResponseBodyContent setRemark(String remark) {
this.remark = remark;
return this;
}
public String getRemark() {
return this.remark;
}
public QueryHospitalRolesResponseBodyContent setRoleCode(String roleCode) {
this.roleCode = roleCode;
return this;
}
public String getRoleCode() {
return this.roleCode;
}
public QueryHospitalRolesResponseBodyContent setRoleName(String roleName) {
this.roleName = roleName;
return this;
}
public String getRoleName() {
return this.roleName;
}
public QueryHospitalRolesResponseBodyContent setSort(Long sort) {
this.sort = sort;
return this;
}
public Long getSort() {
return this.sort;
}
}
}