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.
35 lines
585 B
35 lines
585 B
package com.zc.business.domain;
|
|
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 路段拥堵信息
|
|
*/
|
|
@EqualsAndHashCode(callSuper = true)
|
|
@Data
|
|
public class DcRoadSectionCongestion extends DcRoadSection {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* 上行拥堵路段
|
|
*/
|
|
private List<DcCongestionSection> upCongestionSections;
|
|
|
|
/**
|
|
* 下行拥堵路段
|
|
*/
|
|
private List<DcCongestionSection> downCongestionSections;
|
|
|
|
/**
|
|
* 拥堵状态
|
|
*/
|
|
private int congestionStatus;
|
|
}
|
|
|
|
|
|
|
|
|
|
|