严智鑫
2024-03-22 ecde4b864d846fb68ecbfd562aa22286abfad9c4
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package com.example.springboot.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
import lombok.Data;
 
//理片笼表
/**
 * 存储笼子表
 */
@Data
@TableName("storage_cage")
public class StorageCage {
 
    /**
     * 主键,自动生成
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     * 玻璃id
     */
    private String glassId;
    /**
     * 流程卡
     */
    private String flowcard;
    /**
     * 笼子id
     */
    private Integer cage;
    /**
     * 格子id
     */
    private Integer cell;
    /**
     * 格子层id
     */
    private Integer tier;
    /**
     * 格子宽
     */
    private Double width;
    /**
     * 玻璃宽
     */
    private Double glassWidth;
    /**
     * 玻璃高
     */
    private Double glassHeight;
    /**
     * 测量宽
     */
    private Double glassWidthMm;
    /**
     * 测量高
     */
    private Double glassHeightMm;
    /**
     * 厚度
     */
    private Integer thickness;
    /**
     * 膜系
     */
    private String films;
    /**
     * 状态(0:无玻璃,1:有玻璃,2:进片中,3:出片中,4:调度中)
     */
    private Integer state;
    /**
     * 格子状态(0:启用,1:禁用)
     */
    private Integer disabled;
    /**
     * 玻璃类型
     */
    private String glasstype;
    /**
     * 玻璃数量
     */
    private Integer number;
 
}