1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
| 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;
|
| }
|
|