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
45 lines
618 B
1 year ago
|
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;
|
||
|
}
|