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

com.aliyun.dingtalkjzcrm_1_0.models.GetDataListResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class GetDataListResponseBody extends TeaModel {
    // 数据列表
    @NameInMap("data")
    public java.util.List data;

    // 字段明细
    @NameInMap("dataname")
    public java.util.Map dataname;

    // 当前页码
    @NameInMap("page")
    public Long page;

    // 分页条数
    @NameInMap("pageSize")
    public Long pageSize;

    // 响应时间
    @NameInMap("time")
    public String time;

    // 总条数
    @NameInMap("totalCount")
    public Long totalCount;

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

    public GetDataListResponseBody setData(java.util.List data) {
        this.data = data;
        return this;
    }
    public java.util.List getData() {
        return this.data;
    }

    public GetDataListResponseBody setDataname(java.util.Map dataname) {
        this.dataname = dataname;
        return this;
    }
    public java.util.Map getDataname() {
        return this.dataname;
    }

    public GetDataListResponseBody setPage(Long page) {
        this.page = page;
        return this;
    }
    public Long getPage() {
        return this.page;
    }

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

    public GetDataListResponseBody setTime(String time) {
        this.time = time;
        return this;
    }
    public String getTime() {
        return this.time;
    }

    public GetDataListResponseBody setTotalCount(Long totalCount) {
        this.totalCount = totalCount;
        return this;
    }
    public Long getTotalCount() {
        return this.totalCount;
    }

    public static class GetDataListResponseBodyData extends TeaModel {
        @NameInMap("detail")
        public java.util.Map detail;

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

        public GetDataListResponseBodyData setDetail(java.util.Map detail) {
            this.detail = detail;
            return this;
        }
        public java.util.Map getDetail() {
            return this.detail;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy