wangfei
2024-11-20 0aacd330fca570ab3350aef5bda901f23aee23b3
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
45
46
47
48
49
50
51
52
53
54
package com.mes.bigstoragecagetask.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
 
import java.util.Date;
 
/**
 * (BigStorageCageHistoryTask)表实体类
 *
 * @author makejava
 * @since 2024-11-13 22:46:49
 */
@Data
public class BigStorageCageHistoryTask {
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 玻璃id
     */
    private String glassId;
    /**
     * 起始格子
     */
    private Integer startSlot;
    /**
     * 目标格子
     */
    private Integer targetSlot;
    /**
     * 任务状态
     */
    private Integer taskState;
    /**
     * 玻璃数量
     */
    private Integer glassCount;
    /**
     * 任务类型
     */
    private Integer taskType;
    /**
     * 创建时间
     */
    private Date createTime;
    /**
     * 更新时间
     */
    private Date updateTime;
 
 
}