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
55
56
57
58
59
60
61
62
63
64
65
66
package com.mes.opctask.entity;
 
import lombok.Data;
 
import java.util.Date;
 
/**
 * @Author : zhoush
 * @Date: 2024/10/24 10:22
 * @Description:
 */
@Data
public class EdgStorageDeviceTask {
 
    /**
     * 任务请求 0无任务 1进片 2出片 3直通
     */
    private Integer taskRunning;
    /**
     * 磨边前玻璃id
     */
    private String glassId;
    /**
     * 是否就位
     */
    private Integer inPlace;
    /**
     * 进片玻璃id
     */
    private String glassIdIn;
    /**
     * 出片玻璃id
     */
    private String glassIdOut;
    /**
     * 当前层号
     */
    private Integer currentCell;
    /**
     * 层号
     */
    private Integer startCell;
    /**
     * 预留层号
     */
    private Integer endCell;
    /**
     * 任务状态 0默认空任务 1执行中 2结束任务
     */
    private Integer taskState;
    /**
     * 任务类型
     */
    private Integer taskType;
 
    /**
     * 创建时间
     */
    private Date createTime;
    /**
     * 更新时间
     */
    private Date updateTime;
 
 
}