| | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.extension.activerecord.Model; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.util.Date; |
| | | |
| | |
| | | * @author makejava |
| | | * @since 2024-10-27 21:04:33 |
| | | */ |
| | | @ApiModel(description = "(EdgStorageDeviceTaskHistory)表实体类") |
| | | @SuppressWarnings("serial") |
| | | @Data |
| | | public class EdgStorageDeviceTaskHistory extends Model<EdgStorageDeviceTaskHistory> { |
| | | /** |
| | | * 工程表id |
| | | */ |
| | | @ApiModelProperty(value = "工程表id", position = 1) |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | /** |
| | | * 进片玻璃id |
| | | */ |
| | | @ApiModelProperty(value = "进片玻璃id", position = 2) |
| | | private String glassIdIn; |
| | | /** |
| | | * 出片玻璃id |
| | | */ |
| | | @ApiModelProperty(value = "出片玻璃id", position = 3) |
| | | private String glassIdOut; |
| | | /** |
| | | * 当前层号 |
| | | */ |
| | | @ApiModelProperty(value = "当前层号", position = 4) |
| | | private Integer currentCell; |
| | | /** |
| | | * 层号 |
| | | */ |
| | | @ApiModelProperty(value = "目标层号", position = 5) |
| | | private Integer startCell; |
| | | /** |
| | | * 预留层号 |
| | | */ |
| | | @ApiModelProperty(value = "预留层号", position = 6) |
| | | private Integer endCell; |
| | | /** |
| | | * 任务状态 0默认空任务 1 进片 2出片 3 直通 4执行中 5结束任务 6其他 |
| | | */ |
| | | @ApiModelProperty(value = "任务状态 0默认空任务 1 进片 2出片 3 直通 4执行中 5结束任务 6其他", position = 7) |
| | | private Integer taskState; |
| | | /** |
| | | * 任务状态 0默认空任务 1 进片 2出片 3 直通 4执行中 5结束任务 6其他 |
| | | */ |
| | | @ApiModelProperty(value = "任务状态 0默认空任务 1 进片 2出片 3 直通 4执行中 5结束任务 6其他", position = 8) |
| | | private Integer taskType; |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | @ApiModelProperty(value = "创建时间", position = 9) |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date createTime; |
| | | /** |
| | | * 更新时间 |
| | | */ |
| | | @ApiModelProperty(value = "更新时间", position = 10) |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date updateTime; |
| | | |
| | | /** |
| | | * 设备信息 |
| | | */ |
| | | @ApiModelProperty(value = "设备信息", position = 11) |
| | | private Integer deviceId; |
| | | |
| | | |