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
56afc7f6
Commit
56afc7f6
authored
Apr 17, 2025
by
董国亮
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修订字段命名问题
parent
3a4f03dd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
8 deletions
+11
-8
CrossDataRealtimePO.java
...c/main/java/net/wanji/databus/po/CrossDataRealtimePO.java
+1
-1
CrossDataHistMapper.xml
wj-databus/src/main/resources/mapper/CrossDataHistMapper.xml
+4
-2
CrossDataRealtimeMapper.xml
...bus/src/main/resources/mapper/CrossDataRealtimeMapper.xml
+6
-5
No files found.
wj-databus/src/main/java/net/wanji/databus/po/CrossDataRealtimePO.java
View file @
56afc7f6
...
...
@@ -83,9 +83,9 @@ public class CrossDataRealtimePO {
private
Double
congestionIndex
;
/**
* 空放指数
*/
@ApiModelProperty(value = "空放指数", notes = "")
private Double emptyReleaseIndex;
*/
/**
* 路口失衡方向:1,2,3...
*/
...
...
wj-databus/src/main/resources/mapper/CrossDataHistMapper.xml
View file @
56afc7f6
...
...
@@ -13,12 +13,14 @@
<result
column=
"is_unbalance"
property=
"isUnbalance"
></result>
<result
column=
"is_spillover"
property=
"isSpillover"
></result>
<result
column=
"is_congestion"
property=
"isCongestion"
></result>
<result
column=
"is_emptyrelease"
property=
"isEmptyRelease"
></result>
<result
column=
"unbalance_index"
property=
"unbalanceIndex"
></result>
<result
column=
"spillover_index"
property=
"spilloverIndex"
></result>
<result
column=
"congestion_index"
property=
"congestionIndex"
></result>
<result
column=
"unbalance_dirs"
property=
"unbalanceDirs"
></result>
<result
column=
"spillover_dirs"
property=
"spilloverDirs"
></result>
<result
column=
"congestion_dirs"
property=
"congestionDirs"
></result>
<result
column=
"emptyrelease_dirs"
property=
"emptyReleaseDirs"
></result>
<result
column=
"flow"
property=
"flow"
></result>
<result
column=
"flow_rate"
property=
"flowRate"
></result>
<result
column=
"speed"
property=
"speed"
></result>
...
...
@@ -61,8 +63,8 @@
(
<include
refid=
"Base_Column_List"
></include>
)
values
<foreach
collection=
"list"
item=
"entity"
separator=
","
>
(#{entity.crossId},#{entity.status},#{entity.type},#{entity.trafficIndex},#{entity.startTime},#{entity.endTime},#{entity.duration},#{entity.isUnbalance},#{entity.isSpillover},#{entity.isCongestion},
#{entity.unbalanceIndex},#{entity.spilloverIndex},#{entity.congestionIndex},#{entity.unbalanceDirs},#{entity.spilloverDirs},#{entity.congestionDirs},
(#{entity.crossId},#{entity.status},#{entity.type},#{entity.trafficIndex},#{entity.startTime},#{entity.endTime},#{entity.duration},#{entity.isUnbalance},#{entity.isSpillover},#{entity.isCongestion},
#{entity.isEmptyRelease},
#{entity.unbalanceIndex},#{entity.spilloverIndex},#{entity.congestionIndex},#{entity.unbalanceDirs},#{entity.spilloverDirs},#{entity.congestionDirs},
#{entity.emptyReleaseDirs},
#{entity.flow},#{entity.flowRate},#{entity.speed},#{entity.queueLength},#{entity.stopTimes},#{entity.delayTime},#{entity.sturation},#{entity.batchTime},#{entity.gmtCreate},#{entity.gmtModified},
#{entity.clearRate},#{entity.loadBalance},#{entity.notClearCarNums},#{entity.greenLightEfficiency},#{entity.effusionRate},
#{entity.noStopRate},#{entity.oneStopRate},#{entity.twoStopRate},#{entity.threeStopRate},
...
...
wj-databus/src/main/resources/mapper/CrossDataRealtimeMapper.xml
View file @
56afc7f6
...
...
@@ -13,13 +13,14 @@
<result
column=
"is_unbalance"
property=
"isUnbalance"
></result>
<result
column=
"is_spillover"
property=
"isSpillover"
></result>
<result
column=
"is_congestion"
property=
"isCongestion"
></result>
<result
column=
"is_emptyrelease"
property=
"isEmptyRelease"
></result>
<result
column=
"is_empty
_
release"
property=
"isEmptyRelease"
></result>
<result
column=
"unbalance_index"
property=
"unbalanceIndex"
></result>
<result
column=
"spillover_index"
property=
"spilloverIndex"
></result>
<result
column=
"congestion_index"
property=
"congestionIndex"
></result>
<result
column=
"unbalance_dirs"
property=
"unbalanceDirs"
></result>
<result
column=
"spillover_dirs"
property=
"spilloverDirs"
></result>
<result
column=
"congestion_dirs"
property=
"congestionDirs"
></result>
<result
column=
"empty_release_dirs"
property=
"emptyReleaseDirs"
></result>
<result
column=
"flow"
property=
"flow"
></result>
<result
column=
"flow_rate"
property=
"flowRate"
></result>
<result
column=
"speed"
property=
"speed"
></result>
...
...
@@ -49,8 +50,8 @@
</resultMap>
<sql
id=
"Base_Column_List"
>
cross_id,status,type,traffic_index,start_time,duration,is_unbalance,is_spillover,is_congestion, is_emptyrelease,unbalance_index,
spillover_index,congestion_index,unbalance_dirs,spillover_dirs,congestion_dirs,flow,flow_rate,speed,
cross_id,status,type,traffic_index,start_time,duration,is_unbalance,is_spillover,is_congestion, is_empty
_
release,unbalance_index,
spillover_index,congestion_index,unbalance_dirs,spillover_dirs,congestion_dirs,
empty_release_dirs,
flow,flow_rate,speed,
queue_length,stop_times,delay_time,sturation,batch_time,gmt_create,gmt_modified,clear_rate,end_time,
load_balance,not_clear_car_nums,green_light_efficiency,effusion_rate,
no_stop_rate,one_stop_rate,two_stop_rate,three_stop_rate,non_motor_flow,v_85,
...
...
@@ -62,8 +63,8 @@
(
<include
refid=
"Base_Column_List"
></include>
)
values
<foreach
collection=
"list"
item=
"entity"
separator=
","
>
(#{entity.crossId},#{entity.status},#{entity.type},#{entity.trafficIndex},#{entity.startTime},#{entity.duration},#{entity.isSpillover},#{entity.isSpillover},#{entity.isCongestion},
#{entity.unbalanceIndex},#{entity.spilloverIndex},#{entity.congestionIndex},#{entity.unbalanceDirs},#{entity.spilloverDirs},#{entity.congestionDirs},
(#{entity.crossId},#{entity.status},#{entity.type},#{entity.trafficIndex},#{entity.startTime},#{entity.duration},#{entity.isSpillover},#{entity.isSpillover},#{entity.isCongestion},
#{entity.isCongestion},
#{entity.unbalanceIndex},#{entity.spilloverIndex},#{entity.congestionIndex},#{entity.unbalanceDirs},#{entity.spilloverDirs},#{entity.congestionDirs},
#{entity.emptyReleaseDirs},
#{entity.flow},#{entity.flowRate},#{entity.speed},#{entity.queueLength},#{entity.stopTimes},#{entity.delayTime},#{entity.sturation},#{entity.batchTime},#{entity.gmtCreate},#{entity.gmtModified},
#{entity.clearRate},#{entity.endTime},#{entity.loadBalance},#{entity.notClearCarNums},#{entity.greenLightEfficiency},#{entity.effusionRate},
#{entity.noStopRate},#{entity.oneStopRate},#{entity.twoStopRate},#{entity.threeStopRate},
...
...
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