ZengTao
2025-03-07 5ec61cdaa2c1ab4dd1d58bd94afb49343332e78f
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
package com.mes.hollow.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
/**
 * (HollowFormulaDetails)表实体类
 *
 * @author makejava
 * @since 2024-12-27 13:35:03
 */
@Data
public class HollowFormulaDetails {
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    @ApiModelProperty(value = "配方名 930 931")
    private String formulaName;
    @ApiModelProperty(value = "除膜方式 930 931")
    private Integer filmRemove;
    @ApiModelProperty(value = "上侧除膜量 930 931")
    private Integer topRemove;
    @ApiModelProperty(value = "下侧除膜量 930 931")
    private Integer bottomRemove;
    @ApiModelProperty(value = "左侧除膜量 930 931")
    private Integer leftRemove;
    @ApiModelProperty(value = "右侧除膜量 930 931")
    private Integer rightRemove;
    /**
     * 分割线
     */
    @ApiModelProperty(value = "间隔板1代码 930专用")
    private String frameOne;
    @ApiModelProperty(value = "间隔板2代码 930专用")
    private String frameTwo;
    @ApiModelProperty(value = "间隔板3代码 930专用")
    private String frameThree;
    @ApiModelProperty(value = "间隔板4代码 930专用")
    private String frameFour;
    @ApiModelProperty(value = "密封嵌入 930专用")
    private String sealInsert;
    @ApiModelProperty(value = "气体1(0无 1有) 930专用")
    private String casOne;
    @ApiModelProperty(value = "气体2(0无 1有) 930专用")
    private String casTwo;
    @ApiModelProperty(value = "气体3(0无 1有) 930专用")
    private String casThree;
    @ApiModelProperty(value = "气体4(0无 1有) 930专用")
    private String casFour;
    @ApiModelProperty(value = "间隔框类型1(tps胶为05 铝间隔条01) 930专用")
    private String intervalFrameTypeOne;
    @ApiModelProperty(value = "间隔框宽度1 930专用")
    private String intervalFrameWidthOne;
    @ApiModelProperty(value = "间隔框高度1 930专用")
    private String intervalFrameHeightOne;
    @ApiModelProperty(value = "间隔框类型2(tps胶为05 铝间隔条01) 930专用")
    private String intervalFrameTypeTwo;
    @ApiModelProperty(value = "间隔框宽度2 930专用")
    private String intervalFrameWidthTwo;
    @ApiModelProperty(value = "间隔框高度2 930专用")
    private String intervalFrameHeightTwo;
    @ApiModelProperty(value = "间隔框类型3(tps胶为05 铝间隔条01) 930专用")
    private String intervalFrameTypeThree;
    @ApiModelProperty(value = "间隔框宽度3 930专用")
    private String intervalFrameWidthThree;
    @ApiModelProperty(value = "间隔框高度3 930专用")
    private String intervalFrameHeightThree;
    @ApiModelProperty(value = "间隔框类型4(tps胶为05 铝间隔条01) 930专用")
    private String intervalFrameTypeFour;
    @ApiModelProperty(value = "间隔框宽度4 930专用")
    private String intervalFrameWidthFour;
    @ApiModelProperty(value = "间隔框高度4 930专用")
    private String intervalFrameHeightFour;
    /**
     * 创建时间
     */
    private Date createTime;
    /**
     * 更新时间
     */
    private Date updateTime;
 
}