package com.artfess.yhxt.statistics.vo;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

/**
 * @author zhx
 * @create 2022/2/14
 */
@Data
@ApiModel(value="CountDayDisease 对象", description="病害平均处理时间")
public class CountDayDisease {
    @ApiModelProperty(value = "路段id")
    private String roadId;
    @ApiModelProperty(value = "路段名称")
    private String roadName;
    @ApiModelProperty(value = "病害平均处理时间")
    private String countDayAvg="0";
}
