|
@@ -1,75 +0,0 @@
|
|
|
-/*
|
|
|
- * Copyright (c) 2011-2020, hubin (jobob@qq.com).
|
|
|
- * <p>
|
|
|
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
|
- * use this file except in compliance with the License. You may obtain a copy of
|
|
|
- * the License at
|
|
|
- * <p>
|
|
|
- * https://www.apache.org/licenses/LICENSE-2.0
|
|
|
- * <p>
|
|
|
- * Unless required by applicable law or agreed to in writing, software
|
|
|
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
- * License for the specific language governing permissions and limitations under
|
|
|
- * the License.
|
|
|
- */
|
|
|
-package com.baomidou.mybatisplus.core.conditions;
|
|
|
-
|
|
|
-import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
-import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
-import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
-
|
|
|
-/**
|
|
|
- * Wrapper 条件辅助类
|
|
|
- *
|
|
|
- * @author hubin
|
|
|
- * @see Wrappers
|
|
|
- * @since 2018-09-01
|
|
|
- */
|
|
|
-@Deprecated
|
|
|
-public class Condition {
|
|
|
-
|
|
|
- /**
|
|
|
- * 获取 QueryWrapper 实例
|
|
|
- * <p>示例:Condition.<User>create().eq("id", 1)</p>
|
|
|
- *
|
|
|
- * @see Wrappers#query()
|
|
|
- */
|
|
|
- @Deprecated
|
|
|
- public static <T> QueryWrapper<T> create() {
|
|
|
- return new QueryWrapper<>();
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @param entity ignore
|
|
|
- * @param <T> ignore
|
|
|
- * @return ignore
|
|
|
- * @see Wrappers#query()
|
|
|
- */
|
|
|
- @Deprecated
|
|
|
- public static <T> QueryWrapper<T> create(T entity) {
|
|
|
- return new QueryWrapper<>(entity);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 获取 LambdaQueryWrapper 实例
|
|
|
- * <p>示例:Condition.<User>lambda().eq(User::getId, 1)</p>
|
|
|
- *
|
|
|
- * @see Wrappers#query(Object)
|
|
|
- */
|
|
|
- @Deprecated
|
|
|
- public static <T> LambdaQueryWrapper<T> lambda() {
|
|
|
- return new LambdaQueryWrapper<>();
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @param entity ignore
|
|
|
- * @param <T> ignore
|
|
|
- * @return ignore
|
|
|
- * @see Wrappers#query(Object)
|
|
|
- */
|
|
|
- @Deprecated
|
|
|
- public static <T> LambdaQueryWrapper<T> lambda(T entity) {
|
|
|
- return new LambdaQueryWrapper<>(entity);
|
|
|
- }
|
|
|
-}
|