| | |
| | | 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; |
| | |
| | | /** |
| | | * 起始 |
| | | */ |
| | | 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; |
| | | |
| | | } |