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.
26 lines
425 B
26 lines
425 B
package com.zc.business.domain;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class DcCongestionSection {
|
|
/**
|
|
* 拥堵状态
|
|
*/
|
|
private int congestionStatus;
|
|
|
|
/**
|
|
* 拥堵开始桩号
|
|
*/
|
|
private Integer congestionStartStakeMark;
|
|
|
|
/**
|
|
* 拥堵结束桩号
|
|
*/
|
|
private Integer congestionEndStakeMark;
|
|
|
|
/**
|
|
* 拥堵距离(米)
|
|
*/
|
|
private int congestionDistance;
|
|
}
|
|
|