File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
src/main/kotlin/org/mybatis/dynamic/sql/util/kotlin Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 1616package org.mybatis.dynamic.sql.util.kotlin
1717
1818import org.mybatis.dynamic.sql.SqlColumn
19- import org.mybatis.dynamic.sql.insert.GeneralInsertDSL
20- import org.mybatis.dynamic.sql.insert.InsertDSL
21- import org.mybatis.dynamic.sql.insert.MultiRowInsertDSL
19+ import org.mybatis.dynamic.sql.insert.*
2220import org.mybatis.dynamic.sql.update.UpdateDSL
2321import org.mybatis.dynamic.sql.update.UpdateModel
2422import org.mybatis.dynamic.sql.util.Buildable
2523
2624// insert completers are here because sonar doesn't see them as covered if they are in a file by themselves
27- typealias GeneralInsertCompleter = GeneralInsertDSL .() -> GeneralInsertDSL
25+ typealias GeneralInsertCompleter = GeneralInsertDSL .() -> Buildable < GeneralInsertModel >
2826
29- typealias InsertCompleter <T > = InsertDSL <T >.() -> InsertDSL < T >
27+ typealias InsertCompleter <T > = InsertDSL <T >.() -> Buildable < InsertModel < T > >
3028
31- typealias MultiRowInsertCompleter <T > = MultiRowInsertDSL <T >.() -> MultiRowInsertDSL < T >
29+ typealias MultiRowInsertCompleter <T > = MultiRowInsertDSL <T >.() -> Buildable < MultiRowInsertModel < T > >
3230
3331typealias UpdateCompleter = KotlinUpdateBuilder .() -> Buildable <UpdateModel >
3432
You can’t perform that action at this time.
0 commit comments