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

52 lines
877 B

package com.zc.business.request;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
/**
* 交通特征指数请求参数定义
* @author xiepufeng
*/
@Data
public class DcTrafficMetricsDataRequest {
/**
* 所属辖区路段
*/
private Long roadSectionId;
/**
* 道路方向
*/
private Byte direction;
/**
* 时段类型
* 1-年 2-月 3-季 4-日
*/
private Byte periodType;
/**
* 开始时间
*/
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date startTime;
/**
* 结束时间
*/
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date endTime;
/**
* 是否分路段统计
*/
private boolean segmented;
/**
* 设备类型
*/
private Integer deviceType;
}