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

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

There is a newer version: 2.1.67
Show 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 QueryAllDoctorsRequest extends TeaModel {
    @NameInMap("monthMark")
    public String monthMark;

    /**
     * example:
     * 

1

*/ @NameInMap("pageNum") public Integer pageNum; /** * example: *

200

*/ @NameInMap("pageSize") public Integer pageSize; public static QueryAllDoctorsRequest build(java.util.Map map) throws Exception { QueryAllDoctorsRequest self = new QueryAllDoctorsRequest(); return TeaModel.build(map, self); } public QueryAllDoctorsRequest setMonthMark(String monthMark) { this.monthMark = monthMark; return this; } public String getMonthMark() { return this.monthMark; } public QueryAllDoctorsRequest setPageNum(Integer pageNum) { this.pageNum = pageNum; return this; } public Integer getPageNum() { return this.pageNum; } public QueryAllDoctorsRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy