wangfei
2024-11-29 c377d90fe2a01c2118f6c69c3c177f75be7c318b
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
124
125
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 OptimizeHeatDetail implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 工程号
     */
    private String projectNo;
 
    /**
     * 流程卡号
     */
    private String processId;
 
    /**
     * 补片状态:补片1,0非补片;2024.0409新增
     */
    private Integer patchState;
 
    /**
     * 层
     */
    private Integer layer;
 
    /**
     * 订单内排序
     */
    private Integer orderSort;
 
    /**
     * 版图编号
     */
    private Integer layoutId;
    /**
     * 版图内排序
     */
    private Integer sort;
    /**
     * 小片编号
     */
    private Integer glassId;
 
    /**
     * 小片宽
     */
    private double width;
 
    /**
     * 小片高
     */
    private double height;
    /**
     * 配片宽
     */
    private double pairWidth;
    /**
     * 配片高
     */
    private double pairHeight;
    /**
     * x坐标
     */
    private double xAxis;
 
    /**
     * y坐标
     */
    private double yAxis;
 
    /**
     * 旋转角度(逆时针)
     */
    private double rotateAngle;
    /**
     * 创建人
     */
    private String creater;
    /**
     * 创建时间
     */
    private Data createTime;
    /**
     * 修改时间
     */
    private Data updateTime;
 
    @TableField("intRemark")
    private Integer intRemark;
 
    @TableField("strRemark")
    private String strRemark;
 
    public double getWidth()
    {
        return width;
    }
 
    public double getHeigth()
    {
        return height;
    }
}