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