File tree Expand file tree Collapse file tree 5 files changed +16
-8
lines changed
main/java/org/mybatis/dynamic/sql/util/mybatis3
test/java/examples/simple Expand file tree Collapse file tree 5 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
*/
16
- package org .mybatis .dynamic .sql .select ;
16
+ package org .mybatis .dynamic .sql .util . mybatis3 ;
17
17
18
18
import java .util .function .Function ;
19
19
20
+ import org .mybatis .dynamic .sql .select .MyBatis3SelectModelAdapter ;
21
+ import org .mybatis .dynamic .sql .select .QueryExpressionDSL ;
20
22
import org .mybatis .dynamic .sql .util .Buildable ;
21
23
22
24
@ FunctionalInterface
Original file line number Diff line number Diff line change 13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
*/
16
- package org .mybatis .dynamic .sql .delete ;
16
+ package org .mybatis .dynamic .sql .util . mybatis3 ;
17
17
18
18
import java .util .function .Function ;
19
19
20
+ import org .mybatis .dynamic .sql .delete .DeleteDSL ;
21
+ import org .mybatis .dynamic .sql .delete .MyBatis3DeleteModelAdapter ;
20
22
import org .mybatis .dynamic .sql .util .Buildable ;
21
23
22
24
/**
Original file line number Diff line number Diff line change 13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
*/
16
- package org .mybatis .dynamic .sql .select ;
16
+ package org .mybatis .dynamic .sql .util . mybatis3 ;
17
17
18
18
import java .util .List ;
19
19
import java .util .function .Function ;
20
20
21
+ import org .mybatis .dynamic .sql .select .MyBatis3SelectModelAdapter ;
22
+ import org .mybatis .dynamic .sql .select .QueryExpressionDSL ;
21
23
import org .mybatis .dynamic .sql .util .Buildable ;
22
24
23
25
@ FunctionalInterface
Original file line number Diff line number Diff line change 13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
*/
16
- package org .mybatis .dynamic .sql .update ;
16
+ package org .mybatis .dynamic .sql .util . mybatis3 ;
17
17
18
18
import java .util .function .Function ;
19
19
20
+ import org .mybatis .dynamic .sql .update .MyBatis3UpdateModelAdapter ;
21
+ import org .mybatis .dynamic .sql .update .UpdateDSL ;
20
22
import org .mybatis .dynamic .sql .util .Buildable ;
21
23
22
24
@ FunctionalInterface
Original file line number Diff line number Diff line change 32
32
import org .apache .ibatis .type .JdbcType ;
33
33
import org .mybatis .dynamic .sql .SqlBuilder ;
34
34
import org .mybatis .dynamic .sql .delete .DeleteDSL ;
35
- import org .mybatis .dynamic .sql .delete .MyBatis3DeleteByExampleSupport ;
36
35
import org .mybatis .dynamic .sql .delete .render .DeleteStatementProvider ;
37
36
import org .mybatis .dynamic .sql .insert .render .InsertStatementProvider ;
38
37
import org .mybatis .dynamic .sql .insert .render .MultiRowInsertStatementProvider ;
39
38
import org .mybatis .dynamic .sql .render .RenderingStrategy ;
40
- import org .mybatis .dynamic .sql .select .MyBatis3CountByExampleSupport ;
41
- import org .mybatis .dynamic .sql .select .MyBatis3SelectByExampleSupport ;
42
39
import org .mybatis .dynamic .sql .select .SelectDSL ;
43
40
import org .mybatis .dynamic .sql .select .render .SelectStatementProvider ;
44
- import org .mybatis .dynamic .sql .update .MyBatis3UpdateByExampleSupport ;
45
41
import org .mybatis .dynamic .sql .update .UpdateDSL ;
46
42
import org .mybatis .dynamic .sql .update .render .UpdateStatementProvider ;
47
43
import org .mybatis .dynamic .sql .util .SqlProviderAdapter ;
44
+ import org .mybatis .dynamic .sql .util .mybatis3 .MyBatis3CountByExampleSupport ;
45
+ import org .mybatis .dynamic .sql .util .mybatis3 .MyBatis3DeleteByExampleSupport ;
46
+ import org .mybatis .dynamic .sql .util .mybatis3 .MyBatis3SelectByExampleSupport ;
47
+ import org .mybatis .dynamic .sql .util .mybatis3 .MyBatis3UpdateByExampleSupport ;
48
48
49
49
/**
50
50
*
You can’t perform that action at this time.
0 commit comments