File tree 2 files changed +4
-4
lines changed
src/main/java/org/mybatis/dynamic/sql/insert
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -58,11 +58,11 @@ public BatchInsertModel<T> build() {
58
58
}
59
59
60
60
@ SafeVarargs
61
- public static <T > IntoGatherer <T > insert (T ... records ) {
61
+ public static <T > BatchInsertDSL . IntoGatherer <T > insert (T ... records ) {
62
62
return insert (Arrays .asList (records ));
63
63
}
64
64
65
- public static <T > IntoGatherer <T > insert (Collection <T > records ) {
65
+ public static <T > BatchInsertDSL . IntoGatherer <T > insert (Collection <T > records ) {
66
66
return new IntoGatherer <>(records );
67
67
}
68
68
Original file line number Diff line number Diff line change @@ -57,11 +57,11 @@ public MultiRowInsertModel<T> build() {
57
57
}
58
58
59
59
@ SafeVarargs
60
- public static <T > IntoGatherer <T > insert (T ... records ) {
60
+ public static <T > MultiRowInsertDSL . IntoGatherer <T > insert (T ... records ) {
61
61
return insert (Arrays .asList (records ));
62
62
}
63
63
64
- public static <T > IntoGatherer <T > insert (Collection <T > records ) {
64
+ public static <T > MultiRowInsertDSL . IntoGatherer <T > insert (Collection <T > records ) {
65
65
return new IntoGatherer <>(records );
66
66
}
67
67
You can’t perform that action at this time.
0 commit comments