From da73d93040adf073132ad49c61e1d44e235741c8 Mon Sep 17 00:00:00 2001 From: fengshuonan Date: Mon, 17 May 2021 12:05:03 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=907.0.4=E3=80=91=E5=A2=9E=E5=BC=BAbeetl?= =?UTF-8?q?=E5=92=8C=E7=BA=AFrestful=E9=A1=B9=E7=9B=AE=E4=B9=8B=E5=89=8D?= =?UTF-8?q?=E7=9A=84=E5=88=87=E6=8D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../stylefeng/guns/modular/test/TestMultiTranController.java | 2 +- .../stylefeng/guns/modular/test/TestSingleTranController.java | 2 +- .../cn/stylefeng/guns/modular/test/service/GunsDbService.java | 2 +- .../stylefeng/guns/modular/test/service/OtherDbService.java | 2 +- .../stylefeng/guns/modular/test/service/TranTestService.java | 4 +--- 5 files changed, 5 insertions(+), 7 deletions(-) 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;