wuyouming666
2024-07-01 2aa1ac49e96999cd58d975afdabe98215f91f534
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
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;
import java.util.Date;
 
/**
 * <p>
 *
 * </p>
 *
 * @author zhoush
 * @since 2024-04-16
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class OptimizeProject implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 自增:<优化-工程>
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     * 工程编号
     */
    private String projectNo;
 
    /**
     * 工程项目名
     */
    private String projectName;
 
    /**
     * 玻璃膜系
     */
    private String glassType;
 
    /**
     * 玻璃厚度
     */
    private String glassThickness;
 
    /**
     * 工程种类
     */
    private Integer type;
 
    /**
     * 状态:    -2删除;    -1默认;        1流程卡创建;    2第一次优化保存;        10钢化推荐创建保存;    20优化结果保存
     */
    private Integer state;
 
    /**
     * 总数
     */
    private Integer glassTotal;
 
    /**
     * 总面积
     */
    private double glassTotalArea;
 
    /**
     * 流程卡数量
     */
    private Integer processQty;
 
    /**
     * 循环落架数
     */
    private Integer guidance;
 
    /**
     * 第一次使用原料数
     */
    private Integer fristStockQty;
 
    /**
     * 第一次平均切裁率
     */
    private double fristCutPct;
 
    /**
     * 使用的原料数
     */
    private Integer rawStockQty;
 
    /**
     * 使用的原料面积
     */
    private double rawStockArea;
 
    /**
     * 平均切裁率
     */
    private double avgCutPct;
 
    /**
     * 有效切裁率
     */
    private double validCutPct;
 
    /**
     * 尾片切裁率
     */
    private double lastCutPct;
 
    /**
     * g混排程度
     */
    private String chaosPct;
 
    /**
     * g最大装载率
     */
    private String maxLoadPct;
 
    /**
     * g最大面积
     */
    private String maxArea;
 
    /**
     * g最大数量
     */
    private Integer maxQty;
 
    /**
     * g上片宽
     */
    private double loadWidth;
 
    /**
     * g上片长
     */
    private double loadLength;
 
    /**
     * x间隔
     */
    private double xSpace;
 
    /**
     * y间隔
     */
    private double ySpace;
 
    /**
     * g平均装载率
     */
    private double loadRate;
 
    /**
     * 流程卡集合
     */
    private String processCards;
 
    /**
     * g总炉数
     */
    private Integer furnacesQty;
 
    /**
     * 备注
     */
    private String remark;
 
    /**
     * 创建人
     */
    private String creater;
 
    /**
     * 创建时间
     */
    private Date createTime;
 
    /**
     * 修改时间
     */
    private Date updateTime;
 
    /**
     * 预留,使用需注明
     */
    @TableField("intRemark")
    private Integer intremark;
 
    /**
     * 预留,使用需注明
     */
    @TableField("strRemark")
    private String strremark;
 
 
}