Skip to content

Commit 223236a

Browse files
committed
chore: 简化 package,对于互斥包不再单独命名,例如:data.mp、data.mf,统一为 data
1 parent 78a7904 commit 223236a

File tree

59 files changed

+105
-107
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+105
-107
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
* limitations under the License.
1515
*/
1616

17-
package top.continew.starter.data.core.annotation;
17+
package top.continew.starter.data.annotation;
1818

19-
import top.continew.starter.data.core.enums.QueryType;
19+
import top.continew.starter.data.enums.QueryType;
2020

2121
import java.lang.annotation.*;
2222

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package top.continew.starter.data.core.annotation;
17+
package top.continew.starter.data.annotation;
1818

1919
import java.lang.annotation.*;
2020

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
* limitations under the License.
1515
*/
1616

17-
package top.continew.starter.data.core.enums;
17+
package top.continew.starter.data.enums;
1818

19-
import top.continew.starter.data.core.function.ISqlFunction;
19+
import top.continew.starter.data.function.ISqlFunction;
2020

2121
import java.io.Serializable;
2222

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package top.continew.starter.data.core.enums;
17+
package top.continew.starter.data.enums;
1818

1919
/**
2020
* 查询类型枚举
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package top.continew.starter.data.core.function;
17+
package top.continew.starter.data.function;
1818

1919
import java.io.Serializable;
2020

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package top.continew.starter.data.core.util;
17+
package top.continew.starter.data.util;
1818

1919
import cn.hutool.core.convert.Convert;
2020
import cn.hutool.core.text.CharSequenceUtil;
@@ -25,7 +25,7 @@
2525
import cn.hutool.db.meta.Table;
2626
import cn.hutool.db.meta.TableType;
2727
import top.continew.starter.core.exception.BusinessException;
28-
import top.continew.starter.data.core.enums.DatabaseType;
28+
import top.continew.starter.data.enums.DatabaseType;
2929

3030
import javax.sql.DataSource;
3131
import java.sql.Connection;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package top.continew.starter.data.core.util;
17+
package top.continew.starter.data.util;
1818

1919
import cn.hutool.core.text.CharSequenceUtil;
2020
import org.slf4j.Logger;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package top.continew.starter.data.mf.autoconfigure;
17+
package top.continew.starter.data.autoconfigure;
1818

1919
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
2020
import top.continew.starter.core.constant.PropertiesConstants;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package top.continew.starter.data.mf.autoconfigure;
17+
package top.continew.starter.data.autoconfigure;
1818

1919
import com.mybatisflex.core.dialect.DbType;
2020
import org.springframework.boot.context.properties.ConfigurationProperties;
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package top.continew.starter.data.mf.autoconfigure;
17+
package top.continew.starter.data.autoconfigure;
1818

1919
import com.mybatisflex.core.dialect.DbType;
2020
import com.mybatisflex.core.dialect.DialectFactory;
@@ -30,8 +30,8 @@
3030
import org.springframework.transaction.annotation.EnableTransactionManagement;
3131
import top.continew.starter.core.constant.PropertiesConstants;
3232
import top.continew.starter.core.util.GeneralPropertySourceFactory;
33-
import top.continew.starter.data.mf.datapermission.DataPermissionDialect;
34-
import top.continew.starter.data.mf.datapermission.DataPermissionFilter;
33+
import top.continew.starter.data.datapermission.DataPermissionDialect;
34+
import top.continew.starter.data.datapermission.DataPermissionFilter;
3535

3636
/**
3737
* MyBatis Flex 自动配置

0 commit comments

Comments
 (0)