huang
2025-11-25 19f59c243e8df97c8b9fd9dba4e758be8235d68b
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
package com.mes.hollow.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;
 
/**
 * 中空历史任务表(HollowGlassTaskHistory)表实体类
 *
 * @author makejava
 * @since 2025-07-08 16:02:10
 */
@ApiModel(description = "中空历史任务表(HollowGlassTaskHistory)表实体类")
@Data
public class HollowGlassTaskHistory {
 
    @ApiModelProperty(value = "中空玻璃关系表主键 ID", position = 1)
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    @ApiModelProperty(value = "流程卡号", position = 2)
    private String flowCardId;
 
    @ApiModelProperty(value = "总层数", position = 3)
    private Integer totalLayer;
 
    @ApiModelProperty(value = "路线(表示所属生产线或工艺路径)", position = 4)
    private Integer cell;
 
    @ApiModelProperty(value = "状态: 0 - 新增 1 - 执行中 2 - 暂停 3 - 结束", position = 5)
    private Integer state;
 
    @ApiModelProperty(value = "总配对数量", position = 6)
    private Integer totalPairQuantity;
 
    @ApiModelProperty(value = "已完成配对的数量", position = 7)
    private Integer pairQuantity;
 
    @ApiModelProperty(value = "是否强制执行(0 - 否,1 - 是)", position = 8)
    private Integer isForce;
 
    @ApiModelProperty(value = "配方 ID(关联配方表)", position = 9)
    private Integer formulaId;
 
    @ApiModelProperty(value = "创建时间(任务开始时记录)", position = 10)
    private Date createTime;
 
    @ApiModelProperty(value = "更新时间(每次状态变更时更新)", position = 11)
    private Date updateTime;
 
}