Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
b918e882
Commit
b918e882
authored
Jan 10, 2023
by
tangwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
解决循环依耐
parent
b65a3b4c
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
17 additions
and
3 deletions
+17
-3
AnalysisReportLogController.java
...n/equipmanage/controller/AnalysisReportLogController.java
+2
-0
CarController.java
...ava/com/yeejoin/equipmanage/controller/CarController.java
+1
-0
EquipmentDefUpload.java
.../yeejoin/equipmanage/service/impl/EquipmentDefUpload.java
+2
-0
EquipmentDetailServiceImpl.java
.../equipmanage/service/impl/EquipmentDetailServiceImpl.java
+3
-1
EquipmentServiceImpl.java
...eejoin/equipmanage/service/impl/EquipmentServiceImpl.java
+3
-0
RiskSourceSceneServiceImpl.java
.../equipmanage/service/impl/RiskSourceSceneServiceImpl.java
+3
-0
StockDetailServiceImpl.java
...join/equipmanage/service/impl/StockDetailServiceImpl.java
+3
-2
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/controller/AnalysisReportLogController.java
View file @
b918e882
...
@@ -8,6 +8,7 @@ import com.yeejoin.equipmanage.common.dto.AnalysisReportLogDto;
...
@@ -8,6 +8,7 @@ import com.yeejoin.equipmanage.common.dto.AnalysisReportLogDto;
import
io.swagger.annotations.ApiParam
;
import
io.swagger.annotations.ApiParam
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.context.annotation.Lazy
;
import
org.springframework.format.annotation.DateTimeFormat
;
import
org.springframework.format.annotation.DateTimeFormat
;
import
org.springframework.http.MediaType
;
import
org.springframework.http.MediaType
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.GetMapping
;
...
@@ -45,6 +46,7 @@ public class AnalysisReportLogController extends AbstractBaseController {
...
@@ -45,6 +46,7 @@ public class AnalysisReportLogController extends AbstractBaseController {
// 工具栏中,显示第几个按钮,从左到右,可由逗号隔开显示多个
// 工具栏中,显示第几个按钮,从左到右,可由逗号隔开显示多个
private
String
showButton
=
"6"
;
private
String
showButton
=
"6"
;
@Lazy
@Autowired
@Autowired
IAnalysisReportLogService
iAnalysisReportLogService
;
IAnalysisReportLogService
iAnalysisReportLogService
;
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/controller/CarController.java
View file @
b918e882
...
@@ -100,6 +100,7 @@ public class CarController extends AbstractBaseController {
...
@@ -100,6 +100,7 @@ public class CarController extends AbstractBaseController {
@Autowired
@Autowired
ICarLonAndLatDataService
iCarLonAndLatDataService
;
ICarLonAndLatDataService
iCarLonAndLatDataService
;
@Lazy
@Autowired
@Autowired
IEquipmentService
iEquipmentService
;
IEquipmentService
iEquipmentService
;
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/service/impl/EquipmentDefUpload.java
View file @
b918e882
...
@@ -14,6 +14,7 @@ import com.yeejoin.equipmanage.service.IEquipmentService;
...
@@ -14,6 +14,7 @@ import com.yeejoin.equipmanage.service.IEquipmentService;
import
org.apache.poi.hssf.usermodel.HSSFWorkbook
;
import
org.apache.poi.hssf.usermodel.HSSFWorkbook
;
import
org.apache.poi.ss.usermodel.*
;
import
org.apache.poi.ss.usermodel.*
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.context.annotation.Lazy
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
org.springframework.transaction.annotation.Transactional
;
import
org.springframework.transaction.annotation.Transactional
;
...
@@ -30,6 +31,7 @@ public class EquipmentDefUpload implements IEquipmentDefUpload {
...
@@ -30,6 +31,7 @@ public class EquipmentDefUpload implements IEquipmentDefUpload {
@Autowired
@Autowired
private
EquipmentMapper
equipmentMapper
;
private
EquipmentMapper
equipmentMapper
;
@Lazy
@Autowired
@Autowired
private
IEquipmentService
equipmentService
;
private
IEquipmentService
equipmentService
;
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/service/impl/EquipmentDetailServiceImpl.java
View file @
b918e882
...
@@ -19,6 +19,7 @@ import com.yeejoin.equipmanage.mapper.*;
...
@@ -19,6 +19,7 @@ import com.yeejoin.equipmanage.mapper.*;
import
com.yeejoin.equipmanage.service.*
;
import
com.yeejoin.equipmanage.service.*
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.context.annotation.Lazy
;
import
org.springframework.scheduling.annotation.Async
;
import
org.springframework.scheduling.annotation.Async
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
org.springframework.web.multipart.MultipartFile
;
import
org.springframework.web.multipart.MultipartFile
;
...
@@ -59,13 +60,14 @@ public class EquipmentDetailServiceImpl extends ServiceImpl<EquipmentDetailMappe
...
@@ -59,13 +60,14 @@ public class EquipmentDetailServiceImpl extends ServiceImpl<EquipmentDetailMappe
@Autowired
@Autowired
private
IEquipmentCategoryService
iEquipmentCategoryService
;
private
IEquipmentCategoryService
iEquipmentCategoryService
;
@Lazy
@Autowired
@Autowired
private
IEquipmentService
iEquipmentService
;
private
IEquipmentService
iEquipmentService
;
@Autowired
@Autowired
private
IUnitService
iUnitService
;
private
IUnitService
iUnitService
;
@Lazy
@Autowired
@Autowired
private
IUploadFileService
iUploadFileService
;
private
IUploadFileService
iUploadFileService
;
@Autowired
@Autowired
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/service/impl/EquipmentServiceImpl.java
View file @
b918e882
...
@@ -18,6 +18,7 @@ import org.apache.commons.lang3.RandomStringUtils;
...
@@ -18,6 +18,7 @@ import org.apache.commons.lang3.RandomStringUtils;
import
org.apache.commons.lang3.StringUtils
;
import
org.apache.commons.lang3.StringUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.context.annotation.Lazy
;
import
org.springframework.scheduling.annotation.Async
;
import
org.springframework.scheduling.annotation.Async
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
org.springframework.util.CollectionUtils
;
import
org.springframework.util.CollectionUtils
;
...
@@ -48,6 +49,7 @@ public class EquipmentServiceImpl extends ServiceImpl<EquipmentMapper, Equipment
...
@@ -48,6 +49,7 @@ public class EquipmentServiceImpl extends ServiceImpl<EquipmentMapper, Equipment
private
IEquipmentIndexService
iEquipmentIndexService
;
private
IEquipmentIndexService
iEquipmentIndexService
;
@Autowired
@Autowired
private
IUnitService
iUnitService
;
private
IUnitService
iUnitService
;
@Lazy
@Autowired
@Autowired
private
UploadFileMapper
uploadFileMapper
;
private
UploadFileMapper
uploadFileMapper
;
@Autowired
@Autowired
...
@@ -56,6 +58,7 @@ public class EquipmentServiceImpl extends ServiceImpl<EquipmentMapper, Equipment
...
@@ -56,6 +58,7 @@ public class EquipmentServiceImpl extends ServiceImpl<EquipmentMapper, Equipment
private
PatrolFeign
patrolFeign
;
private
PatrolFeign
patrolFeign
;
@Autowired
@Autowired
private
RemoteSecurityService
remoteSecurityService
;
private
RemoteSecurityService
remoteSecurityService
;
@Lazy
@Autowired
@Autowired
private
IEquipmentDetailService
iEquipmentDetailService
;
private
IEquipmentDetailService
iEquipmentDetailService
;
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/service/impl/RiskSourceSceneServiceImpl.java
View file @
b918e882
...
@@ -16,6 +16,7 @@ import java.util.stream.Collectors;
...
@@ -16,6 +16,7 @@ import java.util.stream.Collectors;
import
org.apache.commons.beanutils.BeanUtils
;
import
org.apache.commons.beanutils.BeanUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.context.annotation.Lazy
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
org.springframework.util.CollectionUtils
;
import
org.springframework.util.CollectionUtils
;
import
org.springframework.util.ObjectUtils
;
import
org.springframework.util.ObjectUtils
;
...
@@ -76,8 +77,10 @@ public class RiskSourceSceneServiceImpl extends ServiceImpl<RiskSourceSceneMappe
...
@@ -76,8 +77,10 @@ public class RiskSourceSceneServiceImpl extends ServiceImpl<RiskSourceSceneMappe
private
RemoteSecurityService
securityService
;
private
RemoteSecurityService
securityService
;
@Autowired
@Autowired
private
IEquipmentCategoryService
iEquipmentCategoryService
;
private
IEquipmentCategoryService
iEquipmentCategoryService
;
@Lazy
@Autowired
@Autowired
private
IEquipmentService
iEquipmentService
;
private
IEquipmentService
iEquipmentService
;
@Lazy
@Autowired
@Autowired
private
IEquipmentDetailService
iEquipmentDetailService
;
private
IEquipmentDetailService
iEquipmentDetailService
;
@Autowired
@Autowired
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/service/impl/StockDetailServiceImpl.java
View file @
b918e882
...
@@ -17,6 +17,7 @@ import com.yeejoin.equipmanage.service.IEquipmentService;
...
@@ -17,6 +17,7 @@ import com.yeejoin.equipmanage.service.IEquipmentService;
import
com.yeejoin.equipmanage.service.IStockDetailService
;
import
com.yeejoin.equipmanage.service.IStockDetailService
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.context.annotation.Lazy
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
java.util.*
;
import
java.util.*
;
...
@@ -29,10 +30,10 @@ import java.util.*;
...
@@ -29,10 +30,10 @@ import java.util.*;
*/
*/
@Service
@Service
public
class
StockDetailServiceImpl
extends
ServiceImpl
<
StockDetailMapper
,
StockDetail
>
implements
IStockDetailService
{
public
class
StockDetailServiceImpl
extends
ServiceImpl
<
StockDetailMapper
,
StockDetail
>
implements
IStockDetailService
{
@Lazy
@Autowired
@Autowired
private
IEquipmentDetailService
iEquipmentDetailService
;
private
IEquipmentDetailService
iEquipmentDetailService
;
@Lazy
@Autowired
@Autowired
private
IEquipmentService
iEquipmentService
;
private
IEquipmentService
iEquipmentService
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment