All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkindustry_1_0.models.HospitalDataCheckRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class HospitalDataCheckRequest extends TeaModel {
    /**
     * example:
     * 

1

*/ @NameInMap("allDeptCount") public Long allDeptCount; /** * example: *

1

*/ @NameInMap("allDeptUserCount") public Long allDeptUserCount; /** * example: *

1

*/ @NameInMap("allGroupCount") public Long allGroupCount; /** * example: *

1

*/ @NameInMap("allGroupUserCount") public Long allGroupUserCount; /** * example: *

1

*/ @NameInMap("deptCount") public Long deptCount; /** * example: *

1

*/ @NameInMap("deptUserCount") public Long deptUserCount; /** * example: *

1

*/ @NameInMap("groupCount") public Long groupCount; /** * example: *

1

*/ @NameInMap("groupUserCount") public Long groupUserCount; public static HospitalDataCheckRequest build(java.util.Map map) throws Exception { HospitalDataCheckRequest self = new HospitalDataCheckRequest(); return TeaModel.build(map, self); } public HospitalDataCheckRequest setAllDeptCount(Long allDeptCount) { this.allDeptCount = allDeptCount; return this; } public Long getAllDeptCount() { return this.allDeptCount; } public HospitalDataCheckRequest setAllDeptUserCount(Long allDeptUserCount) { this.allDeptUserCount = allDeptUserCount; return this; } public Long getAllDeptUserCount() { return this.allDeptUserCount; } public HospitalDataCheckRequest setAllGroupCount(Long allGroupCount) { this.allGroupCount = allGroupCount; return this; } public Long getAllGroupCount() { return this.allGroupCount; } public HospitalDataCheckRequest setAllGroupUserCount(Long allGroupUserCount) { this.allGroupUserCount = allGroupUserCount; return this; } public Long getAllGroupUserCount() { return this.allGroupUserCount; } public HospitalDataCheckRequest setDeptCount(Long deptCount) { this.deptCount = deptCount; return this; } public Long getDeptCount() { return this.deptCount; } public HospitalDataCheckRequest setDeptUserCount(Long deptUserCount) { this.deptUserCount = deptUserCount; return this; } public Long getDeptUserCount() { return this.deptUserCount; } public HospitalDataCheckRequest setGroupCount(Long groupCount) { this.groupCount = groupCount; return this; } public Long getGroupCount() { return this.groupCount; } public HospitalDataCheckRequest setGroupUserCount(Long groupUserCount) { this.groupUserCount = groupUserCount; return this; } public Long getGroupUserCount() { return this.groupUserCount; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy