    package com.artfess.rescue.patrol.vo;

import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

@Data
public class BaseTaskLedgerVO {

    @ApiModelProperty(value = "任务id")
    String id;

    @ApiModelProperty(value = "队伍名称")
    String teamName;

    @ApiModelProperty(value = "任务单号")
    String taskNo;

    @ApiModelProperty(value = "巡检单号")
    String inspectNo;

    @ApiModelProperty(value = "巡查日期")
    String taskDate;

    @ApiModelProperty(value = "天气")
    String weather;

    @ApiModelProperty(value = "路段名称")
    String roadName;

    @ApiModelProperty(value = "总里程")
    String mileage;

    @ApiModelProperty(value = "车牌号")
    String carCode;

    @ApiModelProperty(value = "巡查人员")
    String inspectUsersName;

    @ApiModelProperty(value = "记录人")
    String createName;

    @ApiModelProperty(value = "车辆外观")
    String carAppearance;

    @ApiModelProperty(value = "机油/冷却水")
    String carEngine;

    @ApiModelProperty(value = "标牌/锥标/灭火器")
    String carFfe;

    @ApiModelProperty(value = "灯光/警报器")
    String carLight;

    @ApiModelProperty(value = "刹车/转向")
    String carOp;

    @ApiModelProperty(value = "开始里程数")
    String startMileage;

    @ApiModelProperty(value = "总里程数")
    String endMileage;

}
