Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
H
hzsomms
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
ZTGK
hzsomms
Commits
37e86dc0
Commit
37e86dc0
authored
Jul 13, 2023
by
shizhilong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新筛选条件 --shizhilong
parent
95de846b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
MovementRecordsMasterController.java
...CheckData/controller/MovementRecordsMasterController.java
+12
-0
No files found.
jeecg-module-system/src/main/java/org/jeecg/modules/checkData/equipmentCheckData/controller/MovementRecordsMasterController.java
View file @
37e86dc0
...
...
@@ -21,7 +21,9 @@ import org.jeecg.modules.checkData.equipmentCheckData.service.IMovementCourseInf
import
org.jeecg.modules.checkData.equipmentCheckData.service.IMovementCourseService
;
import
org.jeecg.modules.checkData.equipmentCheckData.service.IMovementRecordsMasterService
;
import
org.jeecg.modules.checkData.equipmentCheckData.vo.*
;
import
org.jeecg.modules.subwayNetwork.entity.LineAlias
;
import
org.jeecg.modules.subwayNetwork.entity.SubwaySection
;
import
org.jeecg.modules.subwayNetwork.service.ILineAliasService
;
import
org.jeecg.modules.subwayNetwork.service.ISubwaySectionService
;
import
org.jeecg.modules.utils.BeanCopyUtil
;
import
org.springframework.beans.factory.annotation.Autowired
;
...
...
@@ -56,6 +58,8 @@ public class MovementRecordsMasterController extends JeecgController<MovementRec
private
IMovementCourseInfoService
movementCourseInfoService
;
@Autowired
private
ISubwaySectionService
subwaySectionService
;
@Autowired
private
ILineAliasService
lineAliasService
;
/**
* 动静态几何尺寸数据-分页列表查询
...
...
@@ -175,7 +179,15 @@ public class MovementRecordsMasterController extends JeecgController<MovementRec
if
(
bean
.
getSectionEndMileage
()
!=
null
)
{
result
.
setEndMileage
(
bean
.
getSectionEndMileage
());
}
if
(
ObjectUtil
.
isNotEmpty
(
bean
.
getSectionName
())){
result
.
setSubwaySectionName
(
bean
.
getSectionName
());
}
if
(
ObjectUtil
.
isNotEmpty
(
bean
.
getLightRailName
())){
result
.
setLightRailName
(
bean
.
getLightRailName
());
}
}
//查询区间起始终点里程
result
.
setLineAliasName
(
lineAliasService
.
getById
(
lineAliasId
).
getLineAliasName
());
//TODO 后期改造完补充逻辑
result
.
setRailNum
(
25
);
result
.
setCurveNum
(
30
);
...
...
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