Commit a4309779 by s_guodong

update

parent 23e438b0
......@@ -490,6 +490,9 @@ public class MyBatisDaoSession extends AbstractDaoSession implements IDaoSession
}
for (int i = 0; i < result.size(); i++) {
Map<String, Object> map1 = result.get(i);
if (map1 == null) {
continue;
}
Set<Map.Entry<String, Object>> entries = map1.entrySet();
//结果集只有1列数据,切查询语句中包含COUNT 函数名,则判断SQL为查询数据行数
//将结果集值类型从BigDecimal 转换为Integer
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment