chore: 简化 package,对于互斥包不再单独命名,例如:data.mp、data.mf,统一为 data

This commit is contained in:
2025-07-04 21:15:28 +08:00
parent 78a7904c2f
commit 223236aad3
59 changed files with 105 additions and 107 deletions

View File

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

View File

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

View File

@@ -14,9 +14,9 @@
* limitations under the License.
*/
package top.continew.starter.data.core.enums;
package top.continew.starter.data.enums;
import top.continew.starter.data.core.function.ISqlFunction;
import top.continew.starter.data.function.ISqlFunction;
import java.io.Serializable;

View File

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

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package top.continew.starter.data.core.function;
package top.continew.starter.data.function;
import java.io.Serializable;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package top.continew.starter.data.core.util;
package top.continew.starter.data.util;
import cn.hutool.core.convert.Convert;
import cn.hutool.core.text.CharSequenceUtil;
@@ -25,7 +25,7 @@ import cn.hutool.db.meta.MetaUtil;
import cn.hutool.db.meta.Table;
import cn.hutool.db.meta.TableType;
import top.continew.starter.core.exception.BusinessException;
import top.continew.starter.data.core.enums.DatabaseType;
import top.continew.starter.data.enums.DatabaseType;
import javax.sql.DataSource;
import java.sql.Connection;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package top.continew.starter.data.core.util;
package top.continew.starter.data.util;
import cn.hutool.core.text.CharSequenceUtil;
import org.slf4j.Logger;