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.
31 lines
443 B
31 lines
443 B
package com.zc.business.domain;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 交通拥堵路段数据定义
|
|
* @author xiepufeng
|
|
*/
|
|
@Data
|
|
public class DcCongestedSectionData {
|
|
|
|
/**
|
|
* 开始桩号
|
|
*/
|
|
private Integer startStakeMark;
|
|
|
|
/**
|
|
* 结束桩号
|
|
*/
|
|
private Integer endStakeMark;
|
|
|
|
/**
|
|
* 道路方向
|
|
*/
|
|
private Byte direction;
|
|
|
|
/**
|
|
* 平均车速
|
|
*/
|
|
private Integer averageSpeed;
|
|
}
|
|
|