60 lines
884 B
60 lines
884 B
1 year ago
|
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;
|
||
|
}
|