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.
32 lines
443 B
32 lines
443 B
1 year ago
|
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;
|
||
|
}
|