package com.doumee.dao.web.response.platformReport; import com.doumee.dao.system.model.Notices; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.util.List; /** * 月台当前作业情况 * * @Author : Rk * @create 2024/10/25 10:59 */ @Data public class PlatformWorkDataVO { @ApiModelProperty(value = "月台名称") private String platformName; @ApiModelProperty(value = "月台编码") private Integer platformId; @ApiModelProperty(value = "月台排序") private Integer platformSort; @ApiModelProperty(value = "车牌号") private String carNo; @ApiModelProperty(value = "作业量") private Integer workNum; @ApiModelProperty(value = "作业类型:0=卸货;1=装货") private Integer workType; @ApiModelProperty(value = "作业时长 单位 分钟") private Long workTime; @ApiModelProperty(value = "预计完成时间 单位:时间戳") private Long finishTime; @ApiModelProperty(value = "预计完成时间 格式HH:mm") private String finishTimeStr; @ApiModelProperty(value = "月台状态:0=作业中;1=空闲中;2=作业超时;3=叫号中") private Integer status; }