| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.doumee.core.annotation.excel.ExcelColumn; |
| | | import com.doumee.core.model.LoginUserInfo; |
| | | import com.doumee.core.model.LoginUserModel; |
| | | import com.doumee.service.business.third.model.LoginUserModel; |
| | | import com.doumee.dao.web.response.PlatformWorkVO; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | |
| | | 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; |
| | |
| | | |
| | | @ApiModelProperty(value = "更新时间") |
| | | @ExcelColumn(name="更新时间") |
| | | |
| | | private Date editDate; |
| | | |
| | | @ApiModelProperty(value = "是否删除0否 1是", example = "1") |
| | |
| | | @ApiModelProperty(value = "备注") |
| | | @ExcelColumn(name="备注") |
| | | private String remark; |
| | | @ApiModelProperty(value = "led空闲文案") |
| | | @ExcelColumn(name="led空闲文案") |
| | | private String ledContent; |
| | | |
| | | @ApiModelProperty(value = "状态 0正常 1禁用", example = "1") |
| | | @ExcelColumn(name="状态 0正常 1禁用") |
| | | private Integer status; |
| | | @ApiModelProperty(value = "类型 0整托盘 1散件", example = "1") |
| | | @ExcelColumn(name="类型 0整托盘 1散件") |
| | | private Integer type; |
| | | @ApiModelProperty(value = "月台状态 0-无车 1-有车 2-超时停靠 3-错误停靠", example = "1") |
| | | @ExcelColumn(name="月台状态 0-无车 1-有车 2-超时停靠 3-错误停靠") |
| | | private Integer platformStatus; |
| | |
| | | |
| | | @ApiModelProperty(value = "最后事件推送时间") |
| | | @ExcelColumn(name="最后事件推送时间") |
| | | |
| | | private Date lastEventTime; |
| | | |
| | | @ApiModelProperty(value = "监控点名称,多个用英文逗号隔开") |
| | |
| | | @ApiModelProperty(value = "角度", example = "1") |
| | | @ExcelColumn(name="角度") |
| | | private BigDecimal angle; |
| | | |
| | | @ApiModelProperty(value = "月台作业效率(万支/小时)", example = "1") |
| | | @ExcelColumn(name="月台作业效率(万支/小时)") |
| | | private BigDecimal workRate; |
| | |
| | | private String groupName; |
| | | @ApiModelProperty(value = "关联LED编码集合,英文逗号隔开", example = "1") |
| | | @TableField(exist = false) |
| | | private String ledIds; |
| | | private List<Integer> ledIds; |
| | | @ApiModelProperty(value = "关联广播编码集合,英文逗号隔开", example = "1") |
| | | @TableField(exist = false) |
| | | private String broadcastIds; |
| | | private List<Integer> broadcastIds; |
| | | @ApiModelProperty(value = "关联LED名称集合,英文逗号隔开", example = "1") |
| | | @TableField(exist = false) |
| | | private String ledNames; |
| | |
| | | @ApiModelProperty(value = "作业状态:0=空闲;1=作业中") |
| | | @TableField(exist = false) |
| | | private Integer workStatus; |
| | | |
| | | @ApiModelProperty(value = "作业车辆车牌照") |
| | | @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) |
| | | private PlatformWorkVO platformWorkVO; |
| | | } |