File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/java/org/mybatis/dynamic/sql/insert Expand file tree Collapse file tree 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() {
5858 }
5959
6060 @ SafeVarargs
61- public static <T > IntoGatherer <T > insert (T ... records ) {
61+ public static <T > BatchInsertDSL . IntoGatherer <T > insert (T ... records ) {
6262 return insert (Arrays .asList (records ));
6363 }
6464
65- public static <T > IntoGatherer <T > insert (Collection <T > records ) {
65+ public static <T > BatchInsertDSL . IntoGatherer <T > insert (Collection <T > records ) {
6666 return new IntoGatherer <>(records );
6767 }
6868
Original file line number Diff line number Diff line change @@ -57,11 +57,11 @@ public MultiRowInsertModel<T> build() {
5757 }
5858
5959 @ SafeVarargs
60- public static <T > IntoGatherer <T > insert (T ... records ) {
60+ public static <T > MultiRowInsertDSL . IntoGatherer <T > insert (T ... records ) {
6161 return insert (Arrays .asList (records ));
6262 }
6363
64- public static <T > IntoGatherer <T > insert (Collection <T > records ) {
64+ public static <T > MultiRowInsertDSL . IntoGatherer <T > insert (Collection <T > records ) {
6565 return new IntoGatherer <>(records );
6666 }
6767
You can’t perform that action at this time.
0 commit comments