package com.mes.bigstoragetask.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; import java.io.Serializable; import java.util.Date; /** *

* *

* * @author zhoush * @since 2024-04-16 */ @ApiModel(description = "

理片进笼任务

") @Data @EqualsAndHashCode(callSuper = false) public class BigStorageCageFeedTask 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 int targetSlot; /** * 玻璃类型 */ @ApiModelProperty(value = "玻璃类型", position = 5) private Integer taskType; /** * 任务类型 */ @ApiModelProperty(value = "任务类型", position = 6) private Integer taskState; /** * 线路 */ @ApiModelProperty(value = "线路", position = 7) private int line; /** * 宽度 */ @ApiModelProperty(value = "宽度", position = 8) private Integer width; /** * 高度 */ @ApiModelProperty(value = "高度", position = 8) private Integer height; /** * 创建时间 */ @ApiModelProperty(value = "创建时间", position = 8) private Date createTime; }