package com.mes.taskcache.entity; import com.baomidou.mybatisplus.annotation.TableLogic; import com.baomidou.mybatisplus.annotation.TableName; import io.swagger.models.auth.In; import lombok.Data; import java.util.Date; /** * 卧式理片笼任务表 */ @Data @TableName("task_cache") public class TaskCache { /** * 任务编号 */ private String glassId; /** * 起始 */ private Integer startCell; /** * 结束 */ private Integer endCell; /** * 任务类型 */ private Integer taskType; /** * 任务状态 */ private Integer taskStatus; /** * 创建时间 */ private Date createTime; @TableLogic private int deleted; }