package com.mes.bigstoragetask.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import java.io.Serializable; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; /** *
* *
* * @author zhoush * @since 2024-04-16 */ @ApiModel(description = "") @Data @EqualsAndHashCode(callSuper = false) public class BigStorageCageOutTask implements Serializable { private static final long serialVersionUID = 1L; /** * 主键id */ @ApiModelProperty(value = "主键id", position = 2) @TableId(value = "id", type = IdType.AUTO) private Long id; /** * 玻璃id */ @ApiModelProperty(value = "玻璃id", position = 3) private String glassId; /** * 开始位置 */ @ApiModelProperty(value = "开始位置", position = 4) private Integer startSlot; /** * 目标位置 */ @ApiModelProperty(value = "目标位置", position = 5) private Integer endSlot; /** * 车次 */ @ApiModelProperty(value = "车次", position = 6) private Integer trainNumber; /** * 序号 */ @ApiModelProperty(value = "序号", position = 7) private Integer serialNumber; /** * 任务状态 */ @ApiModelProperty(value = "任务状态", position = 8) private Integer taskState; }