提交 | 用户 | 时间
|
e57a89
|
1 |
package com.jcdm.main.da.passingStationCollection.domain; |
懒 |
2 |
|
|
3 |
import com.jcdm.common.annotation.Excel; |
|
4 |
import com.jcdm.common.core.domain.BaseEntity; |
|
5 |
import org.apache.commons.lang3.builder.ToStringBuilder; |
|
6 |
import org.apache.commons.lang3.builder.ToStringStyle; |
|
7 |
|
|
8 |
import java.util.Date; |
|
9 |
|
|
10 |
/** |
|
11 |
* 产品过站采集对象 da_passing_station_collection |
|
12 |
* |
|
13 |
* @author yyt |
|
14 |
* @date 2023-12-12 |
|
15 |
*/ |
|
16 |
public class DaPassingStationCollection extends BaseEntity |
|
17 |
{ |
|
18 |
private static final long serialVersionUID = 1L; |
|
19 |
|
|
20 |
/** 主键id */ |
|
21 |
private Long id; |
|
22 |
|
|
23 |
/** 工单编号 */ |
|
24 |
@Excel(name = "工单编号") |
|
25 |
private String workOrderNo; |
|
26 |
|
|
27 |
/** 总成序列号 */ |
|
28 |
@Excel(name = "总成序列号") |
|
29 |
private String sfcCode; |
|
30 |
|
|
31 |
/** 产品编号 */ |
|
32 |
@Excel(name = "产品编号") |
|
33 |
private String productCode; |
|
34 |
|
|
35 |
/** 产线编号 */ |
|
36 |
@Excel(name = "产线编号") |
|
37 |
private String productionLine; |
|
38 |
|
|
39 |
/** 工位编号 */ |
|
40 |
@Excel(name = "工位编号") |
|
41 |
private String locationCode; |
|
42 |
|
|
43 |
/** 设备编号 */ |
|
44 |
@Excel(name = "设备编号") |
|
45 |
private String equipmentNo; |
|
46 |
|
|
47 |
/** 入站时间 */ |
|
48 |
// @JsonFormat(pattern = "yyyy-MM-dd") |
|
49 |
@Excel(name = "入站时间") |
|
50 |
private Date inboundTime; |
|
51 |
|
|
52 |
/** 出站时间 */ |
|
53 |
// @JsonFormat(pattern = "yyyy-MM-dd") |
|
54 |
@Excel(name = "出站时间") |
|
55 |
private Date outboundTime; |
|
56 |
|
|
57 |
/** 入站是否合格 */ |
|
58 |
@Excel(name = "入站是否合格") |
|
59 |
private String inRsSign; |
|
60 |
|
|
61 |
/** 入站NG原因 */ |
|
62 |
@Excel(name = "入站NG原因") |
|
63 |
private String inMsgSign; |
|
64 |
|
|
65 |
/** 出站是否合格 */ |
|
66 |
@Excel(name = "出站是否合格") |
|
67 |
private String outRsSign; |
|
68 |
|
|
69 |
/** 出站NG原因 */ |
|
70 |
@Excel(name = "出站NG原因") |
|
71 |
private String outMsgSign; |
|
72 |
|
|
73 |
/** 采集时间 */ |
|
74 |
// @JsonFormat(pattern = "yyyy-MM-dd") |
|
75 |
@Excel(name = "采集时间") |
|
76 |
private Date collectionTime; |
|
77 |
|
|
78 |
/** 预留字段1 */ |
|
79 |
private String spareField1; |
|
80 |
|
|
81 |
/** 预留字段2 */ |
|
82 |
private String spareField2; |
|
83 |
|
|
84 |
/** 创建用户 */ |
|
85 |
private String createUser; |
|
86 |
|
|
87 |
/** 更改用户 */ |
|
88 |
private String updateUser; |
|
89 |
|
|
90 |
/** 节拍时间 */ |
|
91 |
@Excel(name = "节拍时间") |
|
92 |
private String beatTime; |
|
93 |
|
|
94 |
private Long[] ids; |
|
95 |
|
|
96 |
public Long[] getIds() { |
|
97 |
return ids; |
|
98 |
} |
|
99 |
|
|
100 |
public void setIds(Long[] ids) { |
|
101 |
this.ids = ids; |
|
102 |
} |
|
103 |
|
|
104 |
public void setId(Long id) |
|
105 |
{ |
|
106 |
this.id = id; |
|
107 |
} |
|
108 |
|
|
109 |
public Long getId() |
|
110 |
{ |
|
111 |
return id; |
|
112 |
} |
|
113 |
public void setWorkOrderNo(String workOrderNo) |
|
114 |
{ |
|
115 |
this.workOrderNo = workOrderNo; |
|
116 |
} |
|
117 |
|
|
118 |
public String getWorkOrderNo() |
|
119 |
{ |
|
120 |
return workOrderNo; |
|
121 |
} |
|
122 |
public void setSfcCode(String sfcCode) |
|
123 |
{ |
|
124 |
this.sfcCode = sfcCode; |
|
125 |
} |
|
126 |
|
|
127 |
public String getSfcCode() |
|
128 |
{ |
|
129 |
return sfcCode; |
|
130 |
} |
|
131 |
public void setProductCode(String productCode) |
|
132 |
{ |
|
133 |
this.productCode = productCode; |
|
134 |
} |
|
135 |
|
|
136 |
public String getProductCode() |
|
137 |
{ |
|
138 |
return productCode; |
|
139 |
} |
|
140 |
public void setProductionLine(String productionLine) |
|
141 |
{ |
|
142 |
this.productionLine = productionLine; |
|
143 |
} |
|
144 |
|
|
145 |
public String getProductionLine() |
|
146 |
{ |
|
147 |
return productionLine; |
|
148 |
} |
|
149 |
public void setLocationCode(String locationCode) |
|
150 |
{ |
|
151 |
this.locationCode = locationCode; |
|
152 |
} |
|
153 |
|
|
154 |
public String getLocationCode() |
|
155 |
{ |
|
156 |
return locationCode; |
|
157 |
} |
|
158 |
public void setEquipmentNo(String equipmentNo) |
|
159 |
{ |
|
160 |
this.equipmentNo = equipmentNo; |
|
161 |
} |
|
162 |
|
|
163 |
public String getEquipmentNo() |
|
164 |
{ |
|
165 |
return equipmentNo; |
|
166 |
} |
|
167 |
public void setInboundTime(Date inboundTime) |
|
168 |
{ |
|
169 |
this.inboundTime = inboundTime; |
|
170 |
} |
|
171 |
|
|
172 |
public Date getInboundTime() |
|
173 |
{ |
|
174 |
return inboundTime; |
|
175 |
} |
|
176 |
public void setOutboundTime(Date outboundTime) |
|
177 |
{ |
|
178 |
this.outboundTime = outboundTime; |
|
179 |
} |
|
180 |
|
|
181 |
public Date getOutboundTime() |
|
182 |
{ |
|
183 |
return outboundTime; |
|
184 |
} |
|
185 |
public void setInRsSign(String inRsSign) |
|
186 |
{ |
|
187 |
this.inRsSign = inRsSign; |
|
188 |
} |
|
189 |
|
|
190 |
public String getInRsSign() |
|
191 |
{ |
|
192 |
return inRsSign; |
|
193 |
} |
|
194 |
public void setInMsgSign(String inMsgSign) |
|
195 |
{ |
|
196 |
this.inMsgSign = inMsgSign; |
|
197 |
} |
|
198 |
|
|
199 |
public String getInMsgSign() |
|
200 |
{ |
|
201 |
return inMsgSign; |
|
202 |
} |
|
203 |
public void setOutRsSign(String outRsSign) |
|
204 |
{ |
|
205 |
this.outRsSign = outRsSign; |
|
206 |
} |
|
207 |
|
|
208 |
public String getOutRsSign() |
|
209 |
{ |
|
210 |
return outRsSign; |
|
211 |
} |
|
212 |
public void setOutMsgSign(String outMsgSign) |
|
213 |
{ |
|
214 |
this.outMsgSign = outMsgSign; |
|
215 |
} |
|
216 |
|
|
217 |
public String getOutMsgSign() |
|
218 |
{ |
|
219 |
return outMsgSign; |
|
220 |
} |
|
221 |
public void setCollectionTime(Date collectionTime) |
|
222 |
{ |
|
223 |
this.collectionTime = collectionTime; |
|
224 |
} |
|
225 |
|
|
226 |
public Date getCollectionTime() |
|
227 |
{ |
|
228 |
return collectionTime; |
|
229 |
} |
|
230 |
public void setSpareField1(String spareField1) |
|
231 |
{ |
|
232 |
this.spareField1 = spareField1; |
|
233 |
} |
|
234 |
|
|
235 |
public String getSpareField1() |
|
236 |
{ |
|
237 |
return spareField1; |
|
238 |
} |
|
239 |
public void setSpareField2(String spareField2) |
|
240 |
{ |
|
241 |
this.spareField2 = spareField2; |
|
242 |
} |
|
243 |
|
|
244 |
public String getSpareField2() |
|
245 |
{ |
|
246 |
return spareField2; |
|
247 |
} |
|
248 |
public void setCreateUser(String createUser) |
|
249 |
{ |
|
250 |
this.createUser = createUser; |
|
251 |
} |
|
252 |
|
|
253 |
public String getCreateUser() |
|
254 |
{ |
|
255 |
return createUser; |
|
256 |
} |
|
257 |
public void setUpdateUser(String updateUser) |
|
258 |
{ |
|
259 |
this.updateUser = updateUser; |
|
260 |
} |
|
261 |
|
|
262 |
public String getUpdateUser() |
|
263 |
{ |
|
264 |
return updateUser; |
|
265 |
} |
|
266 |
public void setBeatTime(String beatTime) |
|
267 |
{ |
|
268 |
this.beatTime = beatTime; |
|
269 |
} |
|
270 |
|
|
271 |
public String getBeatTime() |
|
272 |
{ |
|
273 |
return beatTime; |
|
274 |
} |
|
275 |
|
|
276 |
@Override |
|
277 |
public String toString() { |
|
278 |
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|
279 |
.append("id", getId()) |
|
280 |
.append("workOrderNo", getWorkOrderNo()) |
|
281 |
.append("sfcCode", getSfcCode()) |
|
282 |
.append("productCode", getProductCode()) |
|
283 |
.append("productionLine", getProductionLine()) |
|
284 |
.append("locationCode", getLocationCode()) |
|
285 |
.append("equipmentNo", getEquipmentNo()) |
|
286 |
.append("inboundTime", getInboundTime()) |
|
287 |
.append("outboundTime", getOutboundTime()) |
|
288 |
.append("inRsSign", getInRsSign()) |
|
289 |
.append("inMsgSign", getInMsgSign()) |
|
290 |
.append("outRsSign", getOutRsSign()) |
|
291 |
.append("outMsgSign", getOutMsgSign()) |
|
292 |
.append("collectionTime", getCollectionTime()) |
|
293 |
.append("spareField1", getSpareField1()) |
|
294 |
.append("spareField2", getSpareField2()) |
|
295 |
.append("createUser", getCreateUser()) |
|
296 |
.append("createTime", getCreateTime()) |
|
297 |
.append("updateUser", getUpdateUser()) |
|
298 |
.append("updateTime", getUpdateTime()) |
|
299 |
.append("beatTime", getBeatTime()) |
|
300 |
.toString(); |
|
301 |
} |
|
302 |
} |