com.taosdata.jdbc.ws.stmt.entity.StmtResp Maven / Gradle / Ivy
package com.taosdata.jdbc.ws.stmt.entity;
import com.alibaba.fastjson.annotation.JSONField;
import com.taosdata.jdbc.ws.entity.Response;
// init | prepare | set_table_name | set_tags | bind | add_batch
public class StmtResp extends Response {
private int code;
private String message;
@JSONField(name = "stmt_id")
private long stmtId;
public int getCode() {
return code;
}
public void setCode(int code) {
this.code = code;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public long getStmtId() {
return stmtId;
}
public void setStmtId(long stmtId) {
this.stmtId = stmtId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy