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;
|
|
}
|
|
|