Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
traffic-signal-platform
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
signal
traffic-signal-platform
Commits
fc457a8a
Commit
fc457a8a
authored
Mar 28, 2025
by
duwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化交通指标查询为时间升序排序
parent
e40f4d0c
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
5 deletions
+6
-5
CrossDataHistMapper.xml
wj-databus/src/main/resources/mapper/CrossDataHistMapper.xml
+1
-1
CrossDirDataHistMapper.xml
...abus/src/main/resources/mapper/CrossDirDataHistMapper.xml
+1
-1
CrossLaneDataHistMapper.xml
...bus/src/main/resources/mapper/CrossLaneDataHistMapper.xml
+3
-2
CrossTurnDataHistMapper.xml
...bus/src/main/resources/mapper/CrossTurnDataHistMapper.xml
+1
-1
No files found.
wj-databus/src/main/resources/mapper/CrossDataHistMapper.xml
View file @
fc457a8a
...
@@ -132,7 +132,7 @@
...
@@ -132,7 +132,7 @@
t2.cross_id,
t2.cross_id,
t2.start_time
t2.start_time
ORDER BY
ORDER BY
t2.start_time
DESC
t2.start_time
asc
</select>
</select>
<select
id=
"selectMetricHistDTO"
resultType=
"net.wanji.databus.dto.MetricHistDTO"
>
<select
id=
"selectMetricHistDTO"
resultType=
"net.wanji.databus.dto.MetricHistDTO"
>
...
...
wj-databus/src/main/resources/mapper/CrossDirDataHistMapper.xml
View file @
fc457a8a
This diff is collapsed.
Click to expand it.
wj-databus/src/main/resources/mapper/CrossLaneDataHistMapper.xml
View file @
fc457a8a
...
@@ -175,9 +175,10 @@
...
@@ -175,9 +175,10 @@
GROUP BY
GROUP BY
t2.dir,
t2.dir,
t2.turn,
t2.turn,
t2.sort
t2.sort,
t1.start_time
ORDER BY
ORDER BY
t1.start_time
DESC
,
t1.start_time
asc
,
t2.dir
t2.dir
</select>
</select>
</mapper>
</mapper>
\ No newline at end of file
wj-databus/src/main/resources/mapper/CrossTurnDataHistMapper.xml
View file @
fc457a8a
...
@@ -135,7 +135,7 @@
...
@@ -135,7 +135,7 @@
t1.turn_type,
t1.turn_type,
t2.start_time
t2.start_time
ORDER BY
ORDER BY
t2.start_time
DESC
,
t2.start_time
asc
,
t1.in_dir,
t1.in_dir,
t1.turn_type
t1.turn_type
</select>
</select>
...
...
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