Commit 97d6a8db authored by duanruiming's avatar duanruiming

Revert "[update] 方向实时表添加流率"

This reverts commit 9d601de4.
parent 9d601de4
...@@ -37,8 +37,6 @@ public class CrossDirDataRealtimePO { ...@@ -37,8 +37,6 @@ public class CrossDirDataRealtimePO {
public Integer duration; public Integer duration;
@ApiModelProperty(name = "交通流量(辆)",notes = "") @ApiModelProperty(name = "交通流量(辆)",notes = "")
public Integer flow; public Integer flow;
@ApiModelProperty(value = "交通流率/h", notes = "")
private Double flowRate;
@ApiModelProperty(name = "平均速度(km/h)",notes = "") @ApiModelProperty(name = "平均速度(km/h)",notes = "")
public Double speed; public Double speed;
@ApiModelProperty(name = "排队长(米)",notes = "") @ApiModelProperty(name = "排队长(米)",notes = "")
......
...@@ -14,7 +14,6 @@ ...@@ -14,7 +14,6 @@
<result column="capacity" property="capacity"></result> <result column="capacity" property="capacity"></result>
<result column="duration" property="duration"></result> <result column="duration" property="duration"></result>
<result column="flow" property="flow"></result> <result column="flow" property="flow"></result>
<result column="flow_rate" property="flowRate"></result>
<result column="speed" property="speed"></result> <result column="speed" property="speed"></result>
<result column="queue_length" property="queueLength"></result> <result column="queue_length" property="queueLength"></result>
<result column="stop_times" property="stopTimes"></result> <result column="stop_times" property="stopTimes"></result>
...@@ -28,7 +27,7 @@ ...@@ -28,7 +27,7 @@
</resultMap> </resultMap>
<sql id="Base_Column_List"> <sql id="Base_Column_List">
id,dir_type,in_out_type,cross_id,length,status,traffic_index,start_time,capacity,duration,flow,flow_rate,speed,queue_length,stop_times, id,dir_type,in_out_type,cross_id,length,status,traffic_index,start_time,capacity,duration,flow,speed,queue_length,stop_times,
delay_time,sturation,no_stop_rate,one_stop_rate,two_stop_rate,three_stop_rate,batch_time,gmt_create,gmt_modified,effusion_rate, delay_time,sturation,no_stop_rate,one_stop_rate,two_stop_rate,three_stop_rate,batch_time,gmt_create,gmt_modified,effusion_rate,
green_light_efficiency green_light_efficiency
</sql> </sql>
...@@ -39,7 +38,7 @@ ...@@ -39,7 +38,7 @@
values values
<foreach collection="list" item="entity" separator=","> <foreach collection="list" item="entity" separator=",">
( #{entity.id}, #{entity.dirType}, #{entity.inOutType}, #{entity.crossId}, #{entity.length}, #{entity.status}, ( #{entity.id}, #{entity.dirType}, #{entity.inOutType}, #{entity.crossId}, #{entity.length}, #{entity.status},
#{entity.trafficIndex}, #{entity.startTime}, #{entity.capacity}, #{entity.duration}, #{entity.flow}, #{entity.flowRate}, #{entity.trafficIndex}, #{entity.startTime}, #{entity.capacity}, #{entity.duration}, #{entity.flow},
#{entity.speed}, #{entity.queueLength}, #{entity.stopTimes}, #{entity.delayTime}, #{entity.sturation}, #{entity.speed}, #{entity.queueLength}, #{entity.stopTimes}, #{entity.delayTime}, #{entity.sturation},
#{entity.noStopRate},#{entity.oneStopRate},#{entity.twoStopRate},#{entity.threeStopRate},#{entity.batchTime}, #{entity.noStopRate},#{entity.oneStopRate},#{entity.twoStopRate},#{entity.threeStopRate},#{entity.batchTime},
#{entity.gmtCreate}, #{entity.gmtModified},#{entity.effusionRate},#{entity.greenLightEfficiency}) #{entity.gmtCreate}, #{entity.gmtModified},#{entity.effusionRate},#{entity.greenLightEfficiency})
......
...@@ -14,7 +14,6 @@ ...@@ -14,7 +14,6 @@
<result column="capacity" property="capacity"></result> <result column="capacity" property="capacity"></result>
<result column="duration" property="duration"></result> <result column="duration" property="duration"></result>
<result column="flow" property="flow"></result> <result column="flow" property="flow"></result>
<result column="flow_rate" property="flowRate"></result>
<result column="speed" property="speed"></result> <result column="speed" property="speed"></result>
<result column="queue_length" property="queueLength"></result> <result column="queue_length" property="queueLength"></result>
<result column="stop_times" property="stopTimes"></result> <result column="stop_times" property="stopTimes"></result>
...@@ -32,7 +31,7 @@ ...@@ -32,7 +31,7 @@
</resultMap> </resultMap>
<sql id="Base_Column_List"> <sql id="Base_Column_List">
id,dir_type,in_out_type,cross_id,length,status,traffic_index,start_time,capacity,duration, flow,flow_rate,speed,queue_length,stop_times, id,dir_type,in_out_type,cross_id,length,status,traffic_index,start_time,capacity,duration, flow,speed,queue_length,stop_times,
delay_time,sturation,no_stop_rate,one_stop_rate,two_stop_rate,three_stop_rate,batch_time,gmt_create,gmt_modified,effusion_rate, delay_time,sturation,no_stop_rate,one_stop_rate,two_stop_rate,three_stop_rate,batch_time,gmt_create,gmt_modified,effusion_rate,
green_light_efficiency green_light_efficiency
</sql> </sql>
...@@ -42,8 +41,7 @@ ...@@ -42,8 +41,7 @@
(<include refid="Base_Column_List"></include>) (<include refid="Base_Column_List"></include>)
values values
<foreach collection="list" item="entity" separator=","> <foreach collection="list" item="entity" separator=",">
( #{entity.id}, #{entity.dirType}, #{entity.inOutType}, #{entity.crossId}, #{entity.length}, #{entity.status}, ( #{entity.id}, #{entity.dirType}, #{entity.inOutType}, #{entity.crossId}, #{entity.length}, #{entity.status}, #{entity.trafficIndex}, #{entity.startTime}, #{entity.capacity}, #{entity.duration}, #{entity.flow},
#{entity.trafficIndex}, #{entity.startTime}, #{entity.capacity}, #{entity.duration}, #{entity.flow},#{entity.flowRate},
#{entity.speed}, #{entity.queueLength}, #{entity.stopTimes}, #{entity.delayTime}, #{entity.sturation}, #{entity.speed}, #{entity.queueLength}, #{entity.stopTimes}, #{entity.delayTime}, #{entity.sturation},
#{entity.noStopRate},#{entity.oneStopRate},#{entity.twoStopRate},#{entity.threeStopRate},#{entity.batchTime}, #{entity.noStopRate},#{entity.oneStopRate},#{entity.twoStopRate},#{entity.threeStopRate},#{entity.batchTime},
#{entity.gmtCreate}, #{entity.gmtModified},#{entity.effusionRate}, #{entity.greenLightEfficiency} ) #{entity.gmtCreate}, #{entity.gmtModified},#{entity.effusionRate}, #{entity.greenLightEfficiency} )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment