济菏高速数据中心代码
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.

45 lines
641 B

package com.zc.business.request;
import lombok.Data;
import java.util.Date;
/**
* 交通特征指数请求参数定义
* @author xiepufeng
*/
@Data
public class DcTrafficMetricsDataRequest {
/**
* 所属辖区路段
*/
private Long roadSectionId;
/**
* 道路方向
*/
private Byte direction;
/**
* 时段类型
* 1- 2- 3- 4-
*/
private Byte periodType;
/**
* 开始时间
*/
private Date startTime;
/**
* 结束时间
*/
private Date endTime;
/**
* 是否分路段统计
*/
private boolean segmented;
}