|  |  | 
 |  |  | import com.baomidou.mybatisplus.annotation.TableName; | 
 |  |  | import lombok.Data; | 
 |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
 |  |  | import org.springframework.format.annotation.DateTimeFormat; | 
 |  |  |  | 
 |  |  | import java.util.Date; | 
 |  |  | import java.math.BigDecimal; | 
 |  |  | import java.util.List; | 
 |  |  | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     private String workCarCode; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "开始时间 yyyy-MM-dd", example = "1") | 
 |  |  |     @DateTimeFormat(pattern = "yyyy-MM-dd") | 
 |  |  |     @JsonFormat(pattern = "yyyy-MM-dd") | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     private Date queryDateStart; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "结束时间 yyyy-MM-dd", example = "1") | 
 |  |  |     @DateTimeFormat(pattern = "yyyy-MM-dd") | 
 |  |  |     @JsonFormat(pattern = "yyyy-MM-dd") | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     private Date queryDateEnd; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "停靠次数", example = "1") | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     private Integer stopCount; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "工作时长 单位h", example = "1") | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     private BigDecimal workCountTime; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "月台工作开放时长" ,hidden = true) | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     private BigDecimal openTime ; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "使用率", example = "1") | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     private BigDecimal useRata; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "月台作业数据") | 
 |  |  |     @TableField(exist = false) |