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

package com.zc.business.request;
import lombok.Data;
import java.util.Date;
/**
* 交通截面数据请求参数定义
* @author xiepufeng
*/
@Data
public class DcTrafficSectionDataRequest {
/**
* 道路方向
*/
private Byte direction;
/**
* 时段类型
* 1- 2- 3- 4-
*/
private Byte periodType;
/**
* 开始时间
*/
private Date startTime;
/**
* 结束时间
*/
private Date endTime;
/**
* 设备ID
*/
private Long deviceId;
/**
* 设备类型
*/
private Integer deviceType;
}