diff --git a/src_core/com/tenwa/comm/util/jboutil/DataOperatorUtil.java b/src_core/com/tenwa/comm/util/jboutil/DataOperatorUtil.java index 49c900774..91bef246a 100644 --- a/src_core/com/tenwa/comm/util/jboutil/DataOperatorUtil.java +++ b/src_core/com/tenwa/comm/util/jboutil/DataOperatorUtil.java @@ -564,4 +564,13 @@ public class DataOperatorUtil { return getDataBySql( null, sql, params ); } + /** + * 再重构一个更简便调用 + * @param sql + * @return + * @throws Exception + */ + public static List> getDataBySql( String sql ) throws Exception { + return getDataBySql( null, sql, null ); + } }