wang-hao-jie
2021-11-09 6f81429892b6e751056ba250a19a6ecf746fa729
xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/entity/DrivingRecord.java
@@ -31,6 +31,11 @@
    @ApiModelProperty(value = "车辆id")
    private String carId;
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @ApiModelProperty(value = "行车日期")
    private Date drivingDate;
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "出车时间")
@@ -50,6 +55,45 @@
    private String trajectory;
    @ApiModelProperty(value = "行驶里程")
    private int mileage;
    private Integer mileage=0;
    @ApiModelProperty(value = "订单核对 0:未核对 1:已核对")
    private Integer OrderStatus=0;
    @ApiModelProperty(value = "三证 0:正常 1:异常")
    private Integer sanZheng=0;
    @ApiModelProperty(value = "三量 0:正常 1:异常")
    private Integer sanLiang=0;
    @ApiModelProperty(value = "四灯 0:正常 1:异常")
    private Integer siDeng=0;
    @ApiModelProperty(value = "喇叭 0:正常 1:异常")
    private Integer laBa=0;
    @ApiModelProperty(value = "后视镜 0:正常 1:异常")
    private Integer houShiJing=0;
    @ApiModelProperty(value = "雨刷器 0:正常 1:异常")
    private Integer yuShuaQi=0;
    @ApiModelProperty(value = "轮胎 0:正常 1:异常")
    private Integer lunTai=0;
    @ApiModelProperty(value = "仪表 0:正常 1:异常")
    private Integer yiBiao=0;
    @ApiModelProperty(value = "制动 0:正常 1:异常")
    private Integer zhiDong=0;
    @ApiModelProperty(value = "安全设施 0:正常 1:异常")
    private Integer anQuan=0;
    @ApiModelProperty(value = "其它 0:正常 1:异常")
    private Integer qiTa=0;
    @ApiModelProperty(value = "处理意见")
    private String content;
}