济菏高速数据中心代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

79 lines
2.1 KiB

package com.zc.business.domain;
import lombok.Data;
import java.util.Date;
/**
* 一类交流站和毫米波雷达存储数据实体类
*/
@Data
public class DcYzsqbdcHmbldData {
private String id;
// 物联网设备id
private String iotDeviceId;
// 数据源 1一站式情报调查,2毫米波雷达
private String sjy;
// 设备编号(设备身份识别码)
private String sbbh;
// 上报周期(交通数据处理周期)
private String sbzq;
// 时间序号(一站式情报调查)
private String sjxh;
// 上报时间
private String sbsj;
// 平均车速
private Integer pjcs;
// 车道数
private Integer lane;
// 方向
private String direction;
// 总的车流量
private Integer zdcll;
// 跟车百分比
private String gcbfb;
// 平均车头间距
private String pjctjj;
// 时间占有率
private String sjzyl;
// 中小客车交通量
private Integer zxkcjtl;
// 中小客车平均地点车速
private Integer zxkcpjcs;
// 小型货车交通量
private Integer xxhcjtl;
// 小型货车平均地点车速
private Integer xxhcpjcs;
// 大客车交通量
private Integer dkcjtl;
// 大客车平均地点车速
private Integer dkcpjcs;
// 中型货车交通量
private Integer zxhcjtl;
// 中型货车平均地点车速
private Integer zxhcpjcs;
// 大型货车交通量
private Integer dxhcjtl;
// 大型货车平均地点车速
private Integer dxhcpjcs;
// 特大型货车交通量
private Integer tdxhcjtl;
// 特大型货车平均地点车速
private Integer tdxhcpjcs;
// 集装箱车交通量
private Integer jzxcjtl;
// 集装箱车平均地点车速
private Integer jzxcpjcs;
// 拖拉机交通量
private Integer tljjtl;
// 拖拉机平均地点车速
private Integer tljpjcs;
// 摩托车交通量
private Integer mtcjtl;
// 摩托车平均地点车速
private Integer mtcpjcs;
private Date updateTime;
private Date createTime;
}