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 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16- package org .mybatis .dynamic .sql .select ;
16+ package org .mybatis .dynamic .sql .util . mybatis3 ;
1717
1818import java .util .function .Function ;
1919
20+ import org .mybatis .dynamic .sql .select .MyBatis3SelectModelAdapter ;
21+ import org .mybatis .dynamic .sql .select .QueryExpressionDSL ;
2022import org .mybatis .dynamic .sql .util .Buildable ;
2123
2224@ FunctionalInterface
Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16- package org .mybatis .dynamic .sql .delete ;
16+ package org .mybatis .dynamic .sql .util . mybatis3 ;
1717
1818import java .util .function .Function ;
1919
20+ import org .mybatis .dynamic .sql .delete .DeleteDSL ;
21+ import org .mybatis .dynamic .sql .delete .MyBatis3DeleteModelAdapter ;
2022import org .mybatis .dynamic .sql .util .Buildable ;
2123
2224/**
Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16- package org .mybatis .dynamic .sql .select ;
16+ package org .mybatis .dynamic .sql .util . mybatis3 ;
1717
1818import java .util .List ;
1919import java .util .function .Function ;
2020
21+ import org .mybatis .dynamic .sql .select .MyBatis3SelectModelAdapter ;
22+ import org .mybatis .dynamic .sql .select .QueryExpressionDSL ;
2123import org .mybatis .dynamic .sql .util .Buildable ;
2224
2325@ FunctionalInterface
Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16- package org .mybatis .dynamic .sql .update ;
16+ package org .mybatis .dynamic .sql .util . mybatis3 ;
1717
1818import java .util .function .Function ;
1919
20+ import org .mybatis .dynamic .sql .update .MyBatis3UpdateModelAdapter ;
21+ import org .mybatis .dynamic .sql .update .UpdateDSL ;
2022import org .mybatis .dynamic .sql .util .Buildable ;
2123
2224@ FunctionalInterface
Original file line number Diff line number Diff line change 3232import org .apache .ibatis .type .JdbcType ;
3333import org .mybatis .dynamic .sql .SqlBuilder ;
3434import org .mybatis .dynamic .sql .delete .DeleteDSL ;
35- import org .mybatis .dynamic .sql .delete .MyBatis3DeleteByExampleSupport ;
3635import org .mybatis .dynamic .sql .delete .render .DeleteStatementProvider ;
3736import org .mybatis .dynamic .sql .insert .render .InsertStatementProvider ;
3837import org .mybatis .dynamic .sql .insert .render .MultiRowInsertStatementProvider ;
3938import org .mybatis .dynamic .sql .render .RenderingStrategy ;
40- import org .mybatis .dynamic .sql .select .MyBatis3CountByExampleSupport ;
41- import org .mybatis .dynamic .sql .select .MyBatis3SelectByExampleSupport ;
4239import org .mybatis .dynamic .sql .select .SelectDSL ;
4340import org .mybatis .dynamic .sql .select .render .SelectStatementProvider ;
44- import org .mybatis .dynamic .sql .update .MyBatis3UpdateByExampleSupport ;
4541import org .mybatis .dynamic .sql .update .UpdateDSL ;
4642import org .mybatis .dynamic .sql .update .render .UpdateStatementProvider ;
4743import 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 ;
4848
4949/**
5050 *
You can’t perform that action at this time.
0 commit comments