济菏高速数据中心代码

60 lines
884 B

package com.zc.business.domain;
import lombok.Data;
import java.util.Date;
/**
* 交通特征指数定义
* @author xiepufeng
*/
@Data
public class DcTrafficMetricsData {
/**
* 所属辖区路段
*/
private Long roadSectionId;
/**
* 交通组成特征指数
*/
private Integer trafficFeature;
/**
* 通道拥挤度
*/
private Integer channelCongestionLevel;
/**
* 路网拥挤度
*/
private Integer roadNetworkCongestionLevel;
/**
* 饱和度
*/
private Integer saturationLevel;
/**
* 统计时间
*/
private Date statisticalDate;
/**
* 道路方向
*/
private Byte direction;
/**
* 时段类型
* 1- 2- 3- 4-
*/
private Byte periodType;
/**
* 交通量
*/
private Integer trafficVolume;
}