refactor(data): 调整 Query 相关类到 data-core

This commit is contained in:
2024-02-20 21:39:07 +08:00
parent 31ca1fda52
commit 3f2a306cad
4 changed files with 8 additions and 3 deletions

View File

@@ -14,7 +14,9 @@
* limitations under the License.
*/
package top.charles7c.continew.starter.data.mybatis.plus.query;
package top.charles7c.continew.starter.data.core.annotation;
import top.charles7c.continew.starter.data.core.enums.QueryType;
import java.lang.annotation.*;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package top.charles7c.continew.starter.data.mybatis.plus.query;
package top.charles7c.continew.starter.data.core.annotation;
import java.lang.annotation.*;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package top.charles7c.continew.starter.data.mybatis.plus.query;
package top.charles7c.continew.starter.data.core.enums;
/**
* 查询类型枚举

View File

@@ -26,6 +26,9 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import top.charles7c.continew.starter.core.exception.BadRequestException;
import top.charles7c.continew.starter.core.util.ReflectUtils;
import top.charles7c.continew.starter.core.util.validate.ValidationUtils;
import top.charles7c.continew.starter.data.core.annotation.Query;
import top.charles7c.continew.starter.data.core.annotation.QueryIgnore;
import top.charles7c.continew.starter.data.core.enums.QueryType;
import java.lang.reflect.Field;
import java.util.ArrayList;