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.
71 lines
1.2 KiB
71 lines
1.2 KiB
package com.zc.business.domain;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
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;
|
|
|
|
/**
|
|
* 统计时间
|
|
*/
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
|
|
private Date statisticalDate;
|
|
|
|
/**
|
|
* 道路方向
|
|
*/
|
|
private Byte direction;
|
|
|
|
/**
|
|
* 时段类型
|
|
* 1-年 2-月 3-季 4-日
|
|
*/
|
|
private Byte periodType;
|
|
|
|
/**
|
|
* 交通量
|
|
*/
|
|
private Integer trafficVolume;
|
|
|
|
/**
|
|
* 拥堵路段数量
|
|
*/
|
|
private Integer congestedSectionQuantity;
|
|
|
|
/**
|
|
* 拥堵里程(单位:m)
|
|
*/
|
|
private Integer congestedDistance;
|
|
}
|
|
|