zhoushihao
2024-11-20 649e50a1b4fa3811072843c79787163b87ab3889
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
package com.mes.temperingglass.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.mes.base.entity.BigStorageCageBaseInfo;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * (TemperingGlassInfo)表实体类
 *
 * @author makejava
 * @since 2024-11-18 08:36:18
 */
@Data
@TableName("tempering_glass_info")
public class TemperingGlass extends BigStorageCageBaseInfo implements Serializable {
    /**
     * 钢化小片信息表id
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    /**
     * 流程卡
     */
    private String flowCardId;
    /**
     * 流程卡玻璃类型
     */
    private Integer glassType;
    /**
     * 厚度
     */
    private Double thickness;
    /**
     * 膜系
     */
    private String filmsid;
    /**
     * 总层数
     */
    private Integer totalLayer;
    /**
     * 层数
     */
    private Integer layer;
    /**
     * 钢化是否接受横放
     */
    private Integer ishorizontal;
    /**
     * 钢化版图id
     */
    private Integer temperingLayoutId;
    /**
     * 钢化版图片序
     */
    private Integer temperingFeedSequence;
    /**
     * 旋转角度(逆时针)
     */
    private Integer angle;
    /**
     * 工程号
     */
    private String engineerId;
    /**
     * 状态
     */
    private Integer state;
    /**
     * 钢化类型
     */
    private Integer temperingType;
 
    private String deleted;
 
 
}