ZengTao
2025-03-28 f68d3c71819feb59e7a227a5d992b059b900916c
hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/taskcache/entity/TaskCache.java
@@ -1,6 +1,8 @@
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;
@@ -18,22 +20,25 @@
    /**
     * 起始
     */
    private int startCell;
    private Integer startCell;
    /**
     * 结束
     */
    private int endCell;
    private Integer endCell;
    /**
     * 任务类型
     */
    private int taskType;
    private Integer taskType;
    /**
     * 任务状态
     */
    private int taskStatus;
    private Integer taskStatus;
    /**
     * 创建时间
     */
    private Date createTime;
    @TableLogic
    private int deleted;
}