huang
8 天以前 22e17b6db03ca58bc477a35ca067e55a09cffce7
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
package com.mes.horizontal.history;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
/**
 * 卧理理片笼历史任务表(HorizontalSheetCageHistoryTask)表实体类
 *
 * @author makejava
 * @since 2025-07-08 11:13:25
 */
@ApiModel(description = "卧理理片笼历史任务表(HorizontalSheetCageHistoryTask)表实体类")
@Data
public class HorizontalSheetCageHistoryTask {
 
    @ApiModelProperty("卧理历史任务id")
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    @ApiModelProperty("玻璃id")
    private String glassId;
 
    @ApiModelProperty("宽*10")
    private Integer width;
 
    @ApiModelProperty("高*10")
    private Integer height;
 
    @ApiModelProperty("厚度*10")
    private Integer thickness;
 
    @ApiModelProperty("设备id")
    private Integer deviceId;
 
    @ApiModelProperty("线路")
    private Integer workLine;
 
    @ApiModelProperty("任务状态 0开始任务 1结束任务")
    private Integer taskState;
 
    @ApiModelProperty("任务类型")
    private Integer taskType;
 
    @ApiModelProperty("当前格子")
    private Integer currentSlot;
 
    @ApiModelProperty("开始格子")
    private Integer startSlot;
 
    @ApiModelProperty("目标格子")
    private Integer targetSlot;
 
    @ApiModelProperty("创建时间")
    private Date createTime;
 
    @ApiModelProperty("更新时间")
    private Date updateTime;
 
}