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 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 Integer tragetSlot; /** * 玻璃类型 */ @ApiModelProperty(value = "玻璃类型", position = 5) private Integer taskType; /** * 任务类型 */ @ApiModelProperty(value = "任务类型", position = 6) private Integer taskState; /** * 线路 */ @ApiModelProperty(value = "线路", position = 7) private Integer line; }