result set

This commit is contained in:
jackdaw@loafle.com 2017-04-25 16:21:08 +09:00
parent 735944f018
commit a6e8828bfd

View File

@ -16,6 +16,14 @@ public class OFResultSet {
private List<List<String>> rows;
private Map<String, Integer> meta = null;
public Map<String, Integer> getMeta() {
return meta;
}
public void setMeta(Map<String, Integer> meta) {
this.meta = meta;
}
public List<List<String>> getRows() {
return rows;
}