Commit 3d420a82 by s_guodong

修改数据库查询日期为空时 自动实例化当前日期了的bug

parent 42246fae
......@@ -301,8 +301,6 @@ public class MyBatisDaoSession extends AbstractDaoSession implements IDaoSession
method.invoke(module, 0);
} else if (field.getType().getName().equals("java.math.BigDecimal")) {
method.invoke(module, new BigDecimal("0.00"));
} else {//其他类型根据入参类型反射生成对应类型
method.invoke(module, field.getType().newInstance());
}
} else {//结果集对应列 值不为null
//如果入参需要Integer 实际传入的是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