Commit 1096e1cc by chengzhuoshen

更新IDaoSession

parent 328c5df6
......@@ -34,6 +34,7 @@ public interface IDaoSession {
<T extends IModule> T dbReadByArguments(T module, Argument<? extends Object>... args);
<T extends IModule> T dbReadHold(T module, Object... args);
<T extends IModule> int dbReadSet(IModuleList<T> list, Object... args);
<T extends IModule> int dbReadset(IModuleList<T> list, Object... args);
<T extends IModule> int dbReadSetByArguments(IModuleList<T> list, Argument<? extends Object>... args);
@SuppressWarnings("rawtypes")
......@@ -55,6 +56,7 @@ public interface IDaoSession {
void dbFetch(IModule module);
void dbFetchStream(IStream args);
void dbFetchFields(Object... args);
void dbFetchFields(Argument<? extends Object>... arguments);
void dbCloseCursor();
String dbSqlDate(Date endDat);
......
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