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

com.taosdata.jdbc.SchemalessResp Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
package com.taosdata.jdbc;

public class SchemalessResp {
    private int totalRows;
    private int code;
    private String msg;

    public int getTotalRows() {
        return totalRows;
    }

    public void setTotalRows(int totalRows) {
        this.totalRows = totalRows;
    }

    public int getCode() {
        return code;
    }

    public void setCode(int code) {
        this.code = code;
    }

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy