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

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

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

import com.alibaba.fastjson.annotation.JSONField;

/**
 * return from taosadapter
 */
public class Response {
    private String action;

    @JSONField(name = "req_id")
    private long reqId;

    public String getAction() {
        return action;
    }

    public void setAction(String action) {
        this.action = action;
    }

    public long getReqId() {
        return reqId;
    }

    public void setReqId(long reqId) {
        this.reqId = reqId;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy