zhoushihao
2024-11-07 251226a24312a1f3e168db93015be187fb3a44d4
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
package com.mes.opctask.entity;
 
import lombok.Data;
 
import java.util.Date;
 
/**
 * (LoadGlassDeviceTaskHistory)表实体类
 *
 * @author makejava
 * @since 2024-11-06 22:23:00
 */
@SuppressWarnings("serial")
@Data
public class LoadGlassDeviceTaskHistory {
    /**
     * 历史任务id
     */
    private Long id;
    /**
     * 任务请求 0无任务 1上片
     */
    private Integer taskRunning;
    /**
     * 原片宽
     */
    private Integer rawGlassWidth;
    /**
     * 原片高
     */
    private Integer rawGlassHeight;
    /**
     * 上片设备编号
     */
    private Integer station;
    /**
     * 上片位编号
     */
    private Integer slot;
    /**
     * 任务状态 0默认空任务 1执行中 2结束任务
     */
    private Integer taskState;
    /**
     * 创建时间
     */
    private Date createTime;
    /**
     * 更新时间
     */
    private Date updateTime;
    /**
     * 上片总数量
     */
    private Integer totalCount;
    /**
     * 已完成数量
     */
    private Integer finishCount;
    /**
     * 破损数量
     */
    private Integer damageCount;
 
}