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

com.aliyun.dingtalkbizfinance_1_0.models.QueryProjectByPageRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkbizfinance_1_0.models;

import com.aliyun.tea.*;

public class QueryProjectByPageRequest extends TeaModel {
    // 分页,从1开始
    @NameInMap("pageNumber")
    public Long pageNumber;

    // 分页大小,默认10
    @NameInMap("pageSize")
    public Long pageSize;

    public static QueryProjectByPageRequest build(java.util.Map map) throws Exception {
        QueryProjectByPageRequest self = new QueryProjectByPageRequest();
        return TeaModel.build(map, self);
    }

    public QueryProjectByPageRequest setPageNumber(Long pageNumber) {
        this.pageNumber = pageNumber;
        return this;
    }
    public Long getPageNumber() {
        return this.pageNumber;
    }

    public QueryProjectByPageRequest setPageSize(Long pageSize) {
        this.pageSize = pageSize;
        return this;
    }
    public Long getPageSize() {
        return this.pageSize;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy