@@ -108,6 +108,8 @@ public interface Dao extends Configurable {
108
108
*/
109
109
<T > T insert (T obj );
110
110
111
+ <T > T insert (Entity <T > entity , T obj );
112
+
111
113
/**
112
114
* 将一个对象按FieldFilter过滤后,插入到一个数据源。
113
115
* <p/>
@@ -121,7 +123,7 @@ public interface Dao extends Configurable {
121
123
* @see org.nutz.dao.Dao#insert(Object)
122
124
*/
123
125
<T > T insert (T obj , FieldFilter filter );
124
-
126
+
125
127
<T > T insert (T obj , String actived );
126
128
127
129
/**
@@ -147,6 +149,8 @@ public interface Dao extends Configurable {
147
149
*/
148
150
void insert (Class <?> classOfT , Chain chain );
149
151
152
+ void insert (Entity <?> entity , Chain chain );
153
+
150
154
/**
151
155
* 快速插入一个对象。 对象的 '@Prev' 以及 '@Next' 在这个函数里不起作用。
152
156
* <p>
@@ -166,7 +170,7 @@ public interface Dao extends Configurable {
166
170
*
167
171
*/
168
172
<T > T fastInsert (T obj );
169
-
173
+
170
174
<T > T fastInsert (T obj , boolean detectAllColumns );
171
175
172
176
/**
@@ -271,6 +275,20 @@ public interface Dao extends Configurable {
271
275
272
276
int update (Object obj , Condition cnd );
273
277
278
+ int update (Entity <?> entity , Object obj );
279
+
280
+ int update (Entity <?> entity , Object obj , String actived );
281
+
282
+ int update (Entity <?> entity , Object obj , String actived , String locked , boolean ignoreNull );
283
+
284
+ int update (Entity <?> entity , Object obj , FieldFilter fieldFilter );
285
+
286
+ int update (Entity <?> entity , Object obj , FieldFilter fieldFilter , Condition cnd );
287
+
288
+ int update (Entity <?> entity , Object obj , Condition cnd );
289
+
290
+ int update (Entity <?> entity , Chain chain , Condition cnd );
291
+
274
292
/**
275
293
* 更新一个对象,并且忽略所有 null 字段。
276
294
* <p>
@@ -394,6 +412,8 @@ public interface Dao extends Configurable {
394
412
*/
395
413
<T > List <T > query (Class <T > classOfT , Condition cnd , Pager pager );
396
414
415
+ <T > List <T > query (Entity <T > entity , Condition cnd , Pager pager );
416
+
397
417
/**
398
418
* 查询一组对象。你可以为这次查询设定条件
399
419
*
@@ -473,6 +493,8 @@ public interface Dao extends Configurable {
473
493
*/
474
494
<T > int each (Class <T > classOfT , Condition cnd , Pager pager , Each <T > callback );
475
495
496
+ <T > int each (Entity <T > entity , Condition cnd , Pager pager , Each <T > callback );
497
+
476
498
/**
477
499
* 对一组对象进行迭代,这个接口函数非常适用于很大的数据量的集合,因为你不可能把他们都读到内存里
478
500
*
@@ -554,6 +576,8 @@ public interface Dao extends Configurable {
554
576
*/
555
577
int delete (Class <?> classOfT , long id );
556
578
579
+ int delete (Entity <?> entity , long id );
580
+
557
581
/**
558
582
* 根据对象 Name 删除一个对象。它只会删除这个对象,关联对象不会被删除。
559
583
* <p>
@@ -571,6 +595,8 @@ public interface Dao extends Configurable {
571
595
*/
572
596
int delete (Class <?> classOfT , String name );
573
597
598
+ int delete (Entity <?> entity , String name );
599
+
574
600
/**
575
601
* 根据复合主键,删除一个对象。该对象必须声明 '@PK',并且,给定的参数顺序 必须同 '@PK' 中声明的顺序一致,否则会产生不可预知的错误。
576
602
*
@@ -651,6 +677,8 @@ public interface Dao extends Configurable {
651
677
*/
652
678
<T > T fetch (Class <T > classOfT , long id );
653
679
680
+ <T > T fetch (Entity <T > entity , long id );
681
+
654
682
/**
655
683
* 根据对象 Name 获取一个对象。它只会获取这个对象,关联对象不会被获取。
656
684
* <p>
@@ -666,6 +694,8 @@ public interface Dao extends Configurable {
666
694
*/
667
695
<T > T fetch (Class <T > classOfT , String name );
668
696
697
+ <T > T fetch (Entity <T > entity , String name );
698
+
669
699
/**
670
700
* 根据复合主键,获取一个对象。该对象必须声明 '@PK',并且,给定的参数顺序 必须同 '@PK' 中声明的顺序一致,否则会产生不可预知的错误。
671
701
*
@@ -675,6 +705,8 @@ public interface Dao extends Configurable {
675
705
*/
676
706
<T > T fetchx (Class <T > classOfT , Object ... pks );
677
707
708
+ <T > T fetchx (Entity <T > entity , Object ... pks );
709
+
678
710
/**
679
711
* 根据 WHERE 条件获取一个对象。如果有多个对象符合条件,将只获取 ResultSet 第一个记录
680
712
*
@@ -689,6 +721,8 @@ public interface Dao extends Configurable {
689
721
*/
690
722
<T > T fetch (Class <T > classOfT , Condition cnd );
691
723
724
+ <T > T fetch (Entity <T > entity , Condition cnd );
725
+
692
726
/**
693
727
* 根据条件获取一个 Record 对象
694
728
*
@@ -777,6 +811,8 @@ public interface Dao extends Configurable {
777
811
*/
778
812
int clear (Class <?> classOfT , Condition cnd );
779
813
814
+ int clear (Entity <?> entity , Condition cnd );
815
+
780
816
/**
781
817
* 根据一个 WHERE 条件,清除一组记录
782
818
*
@@ -848,6 +884,8 @@ public interface Dao extends Configurable {
848
884
*/
849
885
int count (Class <?> classOfT , Condition cnd );
850
886
887
+ int count (Entity <?> entity , Condition cnd );
888
+
851
889
/**
852
890
* 计算某个对象在数据库中有多少条记录
853
891
*
@@ -857,6 +895,8 @@ public interface Dao extends Configurable {
857
895
*/
858
896
int count (Class <?> classOfT );
859
897
898
+ int count (Entity <?> entity );
899
+
860
900
/**
861
901
* 根据条件,计算某个数据表或视图中有多少条记录
862
902
*
@@ -897,7 +937,7 @@ public interface Dao extends Configurable {
897
937
* @return 计算结果
898
938
*/
899
939
int func (Class <?> classOfT , String funcName , String fieldName );
900
-
940
+
901
941
/**
902
942
* 对某一个对象字段,进行计算。
903
943
*
@@ -1015,6 +1055,8 @@ public interface Dao extends Configurable {
1015
1055
*/
1016
1056
boolean exists (Class <?> classOfT );
1017
1057
1058
+ boolean exists (Entity <?> entity );
1059
+
1018
1060
/**
1019
1061
* @param tableName
1020
1062
* 表名
@@ -1032,6 +1074,7 @@ public interface Dao extends Configurable {
1032
1074
* @return 实体对象
1033
1075
*/
1034
1076
<T > Entity <T > create (Class <T > classOfT , boolean dropIfExists );
1077
+
1035
1078
/**
1036
1079
* 根据一个实体的配置信息为其创建一张表
1037
1080
*
@@ -1042,8 +1085,10 @@ public interface Dao extends Configurable {
1042
1085
* @return 实体对象
1043
1086
*/
1044
1087
<T > Entity <T > create (Entity <T > en , boolean dropIfExists );
1088
+
1045
1089
/**
1046
1090
* 根据一个实体的配置信息为其创建一张表
1091
+ *
1047
1092
* @param tableName
1048
1093
* 表名
1049
1094
* @param map
@@ -1053,8 +1098,10 @@ public interface Dao extends Configurable {
1053
1098
* @return 实体对象
1054
1099
*/
1055
1100
<T extends Map <String , ?>> Entity <T > create (String tableName , T map , boolean dropIfExists );
1101
+
1056
1102
/**
1057
1103
* 根据一个实体的配置信息为其创建一张表, 其中表名从map.get(".table")获取
1104
+ *
1058
1105
* @param map
1059
1106
* 实体描述,参考文档中的非Pojo操作
1060
1107
* @param dropIfExists
@@ -1130,7 +1177,7 @@ public interface Dao extends Configurable {
1130
1177
* @return 原对象
1131
1178
*/
1132
1179
<T > T insertOrUpdate (T t );
1133
-
1180
+
1134
1181
/**
1135
1182
* 根据对象的主键(@Id/@Name/@Pk)先查询, 如果存在就更新, 不存在就插入
1136
1183
*
@@ -1161,28 +1208,42 @@ public interface Dao extends Configurable {
1161
1208
*/
1162
1209
int updateAndIncrIfMatch (Object obj , FieldFilter fieldFilter , String fieldName );
1163
1210
1211
+ int updateAndIncrIfMatch (Entity <?> entity ,
1212
+ Object obj ,
1213
+ FieldFilter fieldFilter ,
1214
+ String fieldName );
1215
+
1164
1216
/**
1165
1217
* 基于版本的更新,版本不一样无法更新到数据
1166
- * @param obj 需要更新的对象, 必须有version属性
1218
+ *
1219
+ * @param obj
1220
+ * 需要更新的对象, 必须有version属性
1167
1221
* @return 若更新成功,大于0, 否则小于0
1168
1222
*/
1169
1223
int updateWithVersion (Object obj );
1170
-
1224
+
1171
1225
/**
1172
1226
* 基于版本的更新,版本不一样无法更新到数据
1173
- * @param obj 需要更新的对象, 必须有version属性
1174
- * @param fieldFilter 需要过滤的字段设置
1227
+ *
1228
+ * @param obj
1229
+ * 需要更新的对象, 必须有version属性
1230
+ * @param fieldFilter
1231
+ * 需要过滤的字段设置
1175
1232
* @return 若更新成功,大于0, 否则小于0
1176
1233
*/
1177
1234
int updateWithVersion (Object obj , FieldFilter fieldFilter );
1178
-
1235
+
1179
1236
/**
1180
1237
* 根据查询条件获取一个对象.<b>注意: 条件语句需要加上表名!!!</b>
1181
1238
* <p/>
1182
1239
* 这个方法是让@One关联的属性,通过left join一次性取出. 与fetch+fetchLinks是等价的
1183
- * @param classOfT 实体类
1184
- * @param regex 需要过滤的关联属性,可以是null,取出全部关联属性.
1185
- * @param cnd 查询条件,必须带表名!!!
1240
+ *
1241
+ * @param classOfT
1242
+ * 实体类
1243
+ * @param regex
1244
+ * 需要过滤的关联属性,可以是null,取出全部关联属性.
1245
+ * @param cnd
1246
+ * 查询条件,必须带表名!!!
1186
1247
* @return 实体对象,符合regex的关联属性也会取出
1187
1248
*/
1188
1249
<T > T fetchByJoin (Class <T > classOfT , String regex , Condition cnd );
@@ -1193,67 +1254,90 @@ public interface Dao extends Configurable {
1193
1254
* 你的对象必须在某个字段声明了注解 '@Id',否则本操作会抛出一个运行时异常
1194
1255
* <p/>
1195
1256
* 这个方法是让@One关联的属性,通过left join一次性取出. 与fetch+fetchLinks是等价的
1196
- * @param classOfT 实体类
1197
- * @param regex 需要取出的关联属性,是正则表达式哦,匹配的是Java属性名
1198
- * @param id 对象id
1257
+ *
1258
+ * @param classOfT
1259
+ * 实体类
1260
+ * @param regex
1261
+ * 需要取出的关联属性,是正则表达式哦,匹配的是Java属性名
1262
+ * @param id
1263
+ * 对象id
1199
1264
* @return 实体
1200
1265
*/
1201
1266
<T > T fetchByJoin (Class <T > classOfT , String regex , long id );
1202
-
1267
+
1203
1268
/**
1204
1269
* 根据对象 NAME 获取一个对象。它只会获取这个对象,关联对象不会被获取。
1205
1270
* <p>
1206
1271
* 你的对象必须在某个字段声明了注解 '@Name',否则本操作会抛出一个运行时异常
1207
1272
* <p/>
1208
1273
* 这个方法是让@One关联的属性,通过left join一次性取出. 与fetch+fetchLinks是等价的
1209
1274
*
1210
- * @param classOfT 实体类
1211
- * @param regex 需要取出的关联属性,是正则表达式哦,匹配的是Java属性名
1212
- * @param name 对象name
1275
+ * @param classOfT
1276
+ * 实体类
1277
+ * @param regex
1278
+ * 需要取出的关联属性,是正则表达式哦,匹配的是Java属性名
1279
+ * @param name
1280
+ * 对象name
1213
1281
* @return 实体
1214
1282
*/
1215
1283
<T > T fetchByJoin (Class <T > classOfT , String regex , String name );
1216
-
1284
+
1217
1285
/**
1218
1286
* 根据查询条件获取所有对象.<b>注意: 条件语句需要加上主表名或关联属性的JAVA属性名!!!</b>
1219
1287
* <p/>
1220
1288
* 这个方法是让@One关联的属性,通过left join一次性取出. 与query+fetchLinks是等价的
1221
- * @param classOfT 实体类
1222
- * @param regex 需要过滤的关联属性,可以是null,取出全部关联属性.
1223
- * @param cnd 查询条件, 主表写表名, 子表写关联属性的JAVA属性名!
1289
+ *
1290
+ * @param classOfT
1291
+ * 实体类
1292
+ * @param regex
1293
+ * 需要过滤的关联属性,可以是null,取出全部关联属性.
1294
+ * @param cnd
1295
+ * 查询条件, 主表写表名, 子表写关联属性的JAVA属性名!
1224
1296
* @return 实体对象的列表,符合regex的关联属性也会取出
1225
1297
*/
1226
1298
<T > List <T > queryByJoin (Class <T > classOfT , String regex , Condition cnd );
1227
-
1299
+
1228
1300
<T > T fetchByJoin (Class <T > classOfT , String regex , Condition cnd , Map <String , Condition > cnds );
1229
-
1301
+
1230
1302
/**
1231
1303
* 根据查询条件获取分页对象.<b>注意: 条件语句需要加上主表名或关联属性的JAVA属性名!!!</b>
1232
1304
* <p/>
1233
1305
* 这个方法是让@One关联的属性,通过left join一次性取出. 与query+fetchLinks是等价的
1234
- * @param classOfT 实体类
1235
- * @param regex 需要过滤的关联属性,可以是null,取出全部关联属性.
1236
- * @param cnd 查询条件, 主表写表名, 子表写关联属性的JAVA属性名!
1237
- * @param pager 分页对象 <b>注意: 分页不要在cnd中传入!</b>
1306
+ *
1307
+ * @param classOfT
1308
+ * 实体类
1309
+ * @param regex
1310
+ * 需要过滤的关联属性,可以是null,取出全部关联属性.
1311
+ * @param cnd
1312
+ * 查询条件, 主表写表名, 子表写关联属性的JAVA属性名!
1313
+ * @param pager
1314
+ * 分页对象 <b>注意: 分页不要在cnd中传入!</b>
1238
1315
* @return 实体对象的列表,符合regex的关联属性也会取出
1239
1316
*/
1240
1317
<T > List <T > queryByJoin (Class <T > classOfT , String regex , Condition cnd , Pager pager );
1241
-
1242
1318
1243
- <T > List <T > queryByJoin (Class <T > classOfT , String regex , Condition cnd , Pager pager , Map <String , Condition > cnds );
1244
-
1319
+ <T > List <T > queryByJoin (Class <T > classOfT ,
1320
+ String regex ,
1321
+ Condition cnd ,
1322
+ Pager pager ,
1323
+ Map <String , Condition > cnds );
1324
+
1245
1325
/**
1246
1326
* 根据查询条件获取分页对象.<b>注意: 条件语句需要加上主表名或关联属性的JAVA属性名!!!</b>
1247
- * @param classOfT 实体类
1248
- * @param regex 需要过滤的关联属性,可以是null,取出全部关联属性.
1249
- * @param cnd 查询条件, 主表写表名, 子表写关联属性的JAVA属性名!
1327
+ *
1328
+ * @param classOfT
1329
+ * 实体类
1330
+ * @param regex
1331
+ * 需要过滤的关联属性,可以是null,取出全部关联属性.
1332
+ * @param cnd
1333
+ * 查询条件, 主表写表名, 子表写关联属性的JAVA属性名!
1250
1334
* @return 数量
1251
1335
*/
1252
1336
<T > int countByJoin (Class <T > classOfT , String regex , Condition cnd );
1253
-
1337
+
1254
1338
EntityHolder getEntityHolder ();
1255
-
1339
+
1256
1340
void truncate (Class <?> klass );
1257
-
1341
+
1258
1342
void truncate (String tableName );
1259
1343
}
0 commit comments