diff --git a/src/main/java/cn/stylefeng/guns/modular/test/TestMultiTranController.java b/src/main/java/cn/stylefeng/guns/modular/test/TestMultiTranController.java index ba276ff7..1d290fbb 100644 --- a/src/main/java/cn/stylefeng/guns/modular/test/TestMultiTranController.java +++ b/src/main/java/cn/stylefeng/guns/modular/test/TestMultiTranController.java @@ -1,9 +1,9 @@ package cn.stylefeng.guns.modular.test; +import cn.stylefeng.guns.modular.test.service.TranTestService; import cn.stylefeng.roses.kernel.rule.pojo.response.SuccessResponseData; import cn.stylefeng.roses.kernel.scanner.api.annotation.ApiResource; import cn.stylefeng.roses.kernel.scanner.api.annotation.GetResource; -import cn.stylefeng.roses.kernel.system.integration.modular.system.datasource.test.service.TranTestService; import org.springframework.web.bind.annotation.RestController; import javax.annotation.Resource; diff --git a/src/main/java/cn/stylefeng/guns/modular/test/TestSingleTranController.java b/src/main/java/cn/stylefeng/guns/modular/test/TestSingleTranController.java index 24a279d3..2e03af0d 100644 --- a/src/main/java/cn/stylefeng/guns/modular/test/TestSingleTranController.java +++ b/src/main/java/cn/stylefeng/guns/modular/test/TestSingleTranController.java @@ -1,9 +1,9 @@ package cn.stylefeng.guns.modular.test; +import cn.stylefeng.guns.modular.test.service.TranTestService; import cn.stylefeng.roses.kernel.rule.pojo.response.SuccessResponseData; import cn.stylefeng.roses.kernel.scanner.api.annotation.ApiResource; import cn.stylefeng.roses.kernel.scanner.api.annotation.GetResource; -import cn.stylefeng.roses.kernel.system.integration.modular.system.datasource.test.service.TranTestService; import org.springframework.web.bind.annotation.RestController; import javax.annotation.Resource; diff --git a/src/main/java/cn/stylefeng/guns/modular/test/service/GunsDbService.java b/src/main/java/cn/stylefeng/guns/modular/test/service/GunsDbService.java index ee2bef91..4301808a 100644 --- a/src/main/java/cn/stylefeng/guns/modular/test/service/GunsDbService.java +++ b/src/main/java/cn/stylefeng/guns/modular/test/service/GunsDbService.java @@ -1,7 +1,7 @@ package cn.stylefeng.guns.modular.test.service; +import cn.stylefeng.guns.modular.test.factory.NormalUserFactory; import cn.stylefeng.roses.kernel.dsctn.api.annotation.DataSource; -import cn.stylefeng.roses.kernel.system.integration.modular.system.datasource.test.factory.NormalUserFactory; import cn.stylefeng.roses.kernel.system.modular.user.entity.SysUser; import cn.stylefeng.roses.kernel.system.modular.user.mapper.SysUserMapper; import cn.stylefeng.roses.kernel.system.modular.user.service.SysUserService; diff --git a/src/main/java/cn/stylefeng/guns/modular/test/service/OtherDbService.java b/src/main/java/cn/stylefeng/guns/modular/test/service/OtherDbService.java index ec13ce79..50085328 100644 --- a/src/main/java/cn/stylefeng/guns/modular/test/service/OtherDbService.java +++ b/src/main/java/cn/stylefeng/guns/modular/test/service/OtherDbService.java @@ -1,7 +1,7 @@ package cn.stylefeng.guns.modular.test.service; +import cn.stylefeng.guns.modular.test.factory.NormalUserFactory; import cn.stylefeng.roses.kernel.dsctn.api.annotation.DataSource; -import cn.stylefeng.roses.kernel.system.integration.modular.system.datasource.test.factory.NormalUserFactory; import cn.stylefeng.roses.kernel.system.modular.user.entity.SysUser; import cn.stylefeng.roses.kernel.system.modular.user.mapper.SysUserMapper; import cn.stylefeng.roses.kernel.system.modular.user.service.SysUserService; diff --git a/src/main/java/cn/stylefeng/guns/modular/test/service/TranTestService.java b/src/main/java/cn/stylefeng/guns/modular/test/service/TranTestService.java index 053248ae..69a5b4fb 100644 --- a/src/main/java/cn/stylefeng/guns/modular/test/service/TranTestService.java +++ b/src/main/java/cn/stylefeng/guns/modular/test/service/TranTestService.java @@ -1,8 +1,6 @@ package cn.stylefeng.guns.modular.test.service; -import cn.stylefeng.roses.kernel.system.integration.modular.system.datasource.test.factory.NormalUserFactory; -import cn.stylefeng.roses.kernel.system.integration.modular.system.datasource.test.service.GunsDbService; -import cn.stylefeng.roses.kernel.system.integration.modular.system.datasource.test.service.OtherDbService; +import cn.stylefeng.guns.modular.test.factory.NormalUserFactory; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional;