Commit cbf114b0 authored by duanruiming's avatar duanruiming

[update] 车道实体优化

parent f5328bbd
...@@ -12,10 +12,6 @@ public class CrossLaneDataHistPOExt extends CrossLaneDataRealTimePO{ ...@@ -12,10 +12,6 @@ public class CrossLaneDataHistPOExt extends CrossLaneDataRealTimePO{
private Integer dir; private Integer dir;
// 车道序号,从左车道开始编号11、12、13... // 车道序号,从左车道开始编号11、12、13...
private Integer sort; private Integer sort;
// 时间占有率
private Double timeOccupancy;
// 空间占有率即车辆负荷比
private Double vehicleNumsRatioMean;
// 转向 // 转向
private Integer turn; private Integer turn;
......
package net.wanji.databus.po; package net.wanji.databus.po;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
...@@ -72,6 +73,7 @@ public class CrossLaneDataRealTimePO { ...@@ -72,6 +73,7 @@ public class CrossLaneDataRealTimePO {
@ApiModelProperty(value = "非机动车流量", notes = "") @ApiModelProperty(value = "非机动车流量", notes = "")
private int nonMotorFlow; private int nonMotorFlow;
@ApiModelProperty(value = "85位速度(km/h)", notes = "") @ApiModelProperty(value = "85位速度(km/h)", notes = "")
@TableField(value = "v_85")
private double v85; private double v85;
@ApiModelProperty(value = "大车流量", notes = "") @ApiModelProperty(value = "大车流量", notes = "")
private int trafficFlowA; private int trafficFlowA;
......
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