Skip to content
张弓 edited this page Feb 19, 2021 · 1 revision

使用范例:

Record rs = new Record();

//赋值:
rs.setField("code", "aa");
rs.setField("num", 1);

//取值:
rs.getString("code"); //return aa
rs.getInt("num"); //return 1
rs.hasValue("num"); //return true;

//转成JOPO对象
JOPO obj = rs.asObject(JOPO.class);

summer-db

Clone this wiki locally