严智鑫
2024-07-05 c7093edbf1fb3c91107c457ea13935305e1a9458
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package com.mes.pp.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
 
/**
 * <p>
 *
 * </p>
 *
 * @author zhoush
 * @since 2024-04-16
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class OptimizeDetail implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 工程号
     */
    private String projectNo;
 
    /**
     * 流程卡号
     */
    private String processId;
 
    /**
     * 层
     */
    private Integer layer;
 
    /**
     * 序号
     */
    private Integer orderSort;
 
    /**
     * 版图id
     */
    private Integer stockId;
 
    /**
     * 版图序
     */
    private Integer stockNumber;
 
    /**
     * 图号
     */
    private Integer graphNo;
 
    /**
     * 小片编号
     */
    private String glassId;
 
    /**
     * 小片ID
     */
    private Integer polysId;
 
    /**
     * 小片宽(加磨量)
     */
    private double pWidth;
 
    /**
     * 小片高(加磨量)
     */
    private double pHeight;
 
    /**
     * 小片宽
     */
    private double width;
 
    /**
     * 小片高
     */
    private double height;
 
    /**
     * x坐标
     */
    private double xAxis;
 
    /**
     * y坐标
     */
    private double yAxis;
 
    /**
     * 钢化版图编号(架号)
     */
    private Integer heatLayoutId;
 
    private String h;
 
    private String g;
 
    private String r;
 
    private String glassPoint;
 
    @TableField("intRemark")
    private Integer intremark;
 
    @TableField("strRemark")
    private String strremark;
 
 
}