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

com.taosdata.jdbc.ws.entity.QueryReq Maven / Gradle / Ivy

package com.taosdata.jdbc.ws.entity;

public class QueryReq extends Payload {
    private String sql;

    public QueryReq(long reqId, String sql) {
        super(reqId);
        this.sql = sql;
    }

    public String getSql() {
        return sql;
    }

    public void setSql(String sql) {
        this.sql = sql;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy