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

cn.ucloud.usql.model.ListCatalogTablesResult Maven / Gradle / Ivy

There is a newer version: 0.8.4.4-release
Show newest version
package cn.ucloud.usql.model;

import cn.ucloud.common.pojo.BaseResponseResult;
import com.google.gson.annotations.SerializedName;

import java.util.List;


/**
 * @Description : 获取数据库中所有表 结果类
 * @Author : ucloud-sdk-generator
 * @Date : 2019-03-13 07:56
 **/
public class ListCatalogTablesResult extends BaseResponseResult {
    /**
     * 请求ID
     */
    @SerializedName("Request")
    private String request;
    /**
     * 数据表总数
     */
    @SerializedName("TotalCount")
    private Integer totalCount;
    /**
     * 该数据库中数据表的集合
     */
    @SerializedName("Tables")
    private List tables;


    public String getRequest() {
        return this.request;
    }

    public void setRequest(String request) {
        this.request = request;
    }

    public Integer getTotalCount() {
        return this.totalCount;
    }

    public void setTotalCount(Integer totalCount) {
        this.totalCount = totalCount;
    }


    public List getTables() {
        return this.tables;
    }

    public void setTables(List tables) {
        this.tables = tables;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy