提交 | 用户 | 时间
|
71e81e
|
1 |
package cn.stylefeng.guns.modular.rm.recipeManage.entity; |
懒 |
2 |
|
|
3 |
import com.baomidou.mybatisplus.annotation.TableName; |
|
4 |
import com.baomidou.mybatisplus.annotation.IdType; |
|
5 |
import com.baomidou.mybatisplus.annotation.TableId; |
|
6 |
import com.baomidou.mybatisplus.annotation.TableField; |
|
7 |
import java.io.Serializable; |
|
8 |
|
|
9 |
/** |
|
10 |
* <p> |
|
11 |
* 配方管理 |
|
12 |
* </p> |
|
13 |
* |
|
14 |
* @author ruimin |
|
15 |
* @since 2023-08-04 |
|
16 |
*/ |
|
17 |
@TableName("rm_recipe_manage") |
|
18 |
public class RecipeManage implements Serializable { |
|
19 |
|
|
20 |
private static final long serialVersionUID=1L; |
|
21 |
|
|
22 |
/** |
|
23 |
* id |
|
24 |
*/ |
|
25 |
@TableId(value = "id", type = IdType.ID_WORKER) |
|
26 |
private Long id; |
|
27 |
|
|
28 |
/** |
|
29 |
* 产线 |
|
30 |
*/ |
|
31 |
@TableField("production_line") |
|
32 |
private String productionLine; |
|
33 |
|
|
34 |
/** |
|
35 |
* 工位 |
|
36 |
*/ |
|
37 |
@TableField("location_code") |
|
38 |
private String locationCode; |
|
39 |
|
|
40 |
/** |
|
41 |
* 产品编号 |
|
42 |
*/ |
|
43 |
@TableField("product_code") |
|
44 |
private String productCode; |
|
45 |
|
|
46 |
/** |
|
47 |
* 操作内容 |
|
48 |
*/ |
|
49 |
@TableField("operation_steps") |
|
50 |
private String operationSteps; |
|
51 |
|
|
52 |
/** |
|
53 |
* 技术要求 |
|
54 |
*/ |
|
55 |
@TableField("tech_requirement") |
|
56 |
private String techRequirement; |
|
57 |
|
|
58 |
/** |
|
59 |
* 类型(扫描产品条码1、扫描物料条码2、拧紧类3) |
|
60 |
*/ |
|
61 |
@TableField("operation_type") |
|
62 |
private String operationType; |
|
63 |
|
|
64 |
/** |
|
65 |
* 排序 |
|
66 |
*/ |
|
67 |
@TableField("step_sort") |
|
68 |
private String stepSort; |
|
69 |
|
|
70 |
/** |
|
71 |
* 参数编码 |
|
72 |
*/ |
|
73 |
@TableField("param_code") |
|
74 |
private String paramCode; |
|
75 |
|
|
76 |
/** |
|
77 |
* 物料编码 |
|
78 |
*/ |
|
79 |
@TableField("material_code") |
|
80 |
private String materialCode; |
|
81 |
|
|
82 |
/** |
|
83 |
* 图片 |
|
84 |
*/ |
|
85 |
@TableField("picture") |
|
86 |
private String picture; |
|
87 |
|
|
88 |
/** |
|
89 |
* 备注 |
|
90 |
*/ |
|
91 |
@TableField("remarks") |
|
92 |
private String remarks; |
|
93 |
|
|
94 |
/** |
|
95 |
* 预留字段1 |
|
96 |
*/ |
|
97 |
@TableField("spare_field_1") |
|
98 |
private String spareField1; |
|
99 |
|
|
100 |
/** |
|
101 |
* 预留字段2 |
|
102 |
*/ |
|
103 |
@TableField("spare_field_2") |
|
104 |
private String spareField2; |
|
105 |
|
|
106 |
/** |
|
107 |
* 预留字段3 |
|
108 |
*/ |
|
109 |
@TableField("spare_field_3") |
|
110 |
private String spareField3; |
|
111 |
|
|
112 |
/** |
|
113 |
* 预留字段4 |
|
114 |
*/ |
|
115 |
@TableField("spare_field_4") |
|
116 |
private String spareField4; |
|
117 |
|
|
118 |
/** |
|
119 |
* 预留字段4 |
|
120 |
*/ |
|
121 |
@TableField(exist = false) |
|
122 |
private String soketData; |
|
123 |
|
|
124 |
public String getSoketData() { |
|
125 |
return soketData; |
|
126 |
} |
|
127 |
|
|
128 |
public void setSoketData(String soketData) { |
|
129 |
this.soketData = soketData; |
|
130 |
} |
|
131 |
|
|
132 |
public Long getId() { |
|
133 |
return id; |
|
134 |
} |
|
135 |
|
|
136 |
public void setId(Long id) { |
|
137 |
this.id = id; |
|
138 |
} |
|
139 |
|
|
140 |
public String getProductionLine() { |
|
141 |
return productionLine; |
|
142 |
} |
|
143 |
|
|
144 |
public void setProductionLine(String productionLine) { |
|
145 |
this.productionLine = productionLine; |
|
146 |
} |
|
147 |
|
|
148 |
public String getLocationCode() { |
|
149 |
return locationCode; |
|
150 |
} |
|
151 |
|
|
152 |
public void setLocationCode(String locationCode) { |
|
153 |
this.locationCode = locationCode; |
|
154 |
} |
|
155 |
|
|
156 |
public String getProductCode() { |
|
157 |
return productCode; |
|
158 |
} |
|
159 |
|
|
160 |
public void setProductCode(String productCode) { |
|
161 |
this.productCode = productCode; |
|
162 |
} |
|
163 |
|
|
164 |
public String getOperationSteps() { |
|
165 |
return operationSteps; |
|
166 |
} |
|
167 |
|
|
168 |
public void setOperationSteps(String operationSteps) { |
|
169 |
this.operationSteps = operationSteps; |
|
170 |
} |
|
171 |
|
|
172 |
public String getTechRequirement() { |
|
173 |
return techRequirement; |
|
174 |
} |
|
175 |
|
|
176 |
public void setTechRequirement(String techRequirement) { |
|
177 |
this.techRequirement = techRequirement; |
|
178 |
} |
|
179 |
|
|
180 |
public String getOperationType() { |
|
181 |
return operationType; |
|
182 |
} |
|
183 |
|
|
184 |
public void setOperationType(String operationType) { |
|
185 |
this.operationType = operationType; |
|
186 |
} |
|
187 |
|
|
188 |
public String getStepSort() { |
|
189 |
return stepSort; |
|
190 |
} |
|
191 |
|
|
192 |
public void setStepSort(String stepSort) { |
|
193 |
this.stepSort = stepSort; |
|
194 |
} |
|
195 |
|
|
196 |
public String getParamCode() { |
|
197 |
return paramCode; |
|
198 |
} |
|
199 |
|
|
200 |
public void setParamCode(String paramCode) { |
|
201 |
this.paramCode = paramCode; |
|
202 |
} |
|
203 |
|
|
204 |
public String getMaterialCode() { |
|
205 |
return materialCode; |
|
206 |
} |
|
207 |
|
|
208 |
public void setMaterialCode(String materialCode) { |
|
209 |
this.materialCode = materialCode; |
|
210 |
} |
|
211 |
|
|
212 |
public String getPicture() { |
|
213 |
return picture; |
|
214 |
} |
|
215 |
|
|
216 |
public void setPicture(String picture) { |
|
217 |
this.picture = picture; |
|
218 |
} |
|
219 |
|
|
220 |
public String getRemarks() { |
|
221 |
return remarks; |
|
222 |
} |
|
223 |
|
|
224 |
public void setRemarks(String remarks) { |
|
225 |
this.remarks = remarks; |
|
226 |
} |
|
227 |
|
|
228 |
public String getSpareField1() { |
|
229 |
return spareField1; |
|
230 |
} |
|
231 |
|
|
232 |
public void setSpareField1(String spareField1) { |
|
233 |
this.spareField1 = spareField1; |
|
234 |
} |
|
235 |
|
|
236 |
public String getSpareField2() { |
|
237 |
return spareField2; |
|
238 |
} |
|
239 |
|
|
240 |
public void setSpareField2(String spareField2) { |
|
241 |
this.spareField2 = spareField2; |
|
242 |
} |
|
243 |
|
|
244 |
public String getSpareField3() { |
|
245 |
return spareField3; |
|
246 |
} |
|
247 |
|
|
248 |
public void setSpareField3(String spareField3) { |
|
249 |
this.spareField3 = spareField3; |
|
250 |
} |
|
251 |
|
|
252 |
public String getSpareField4() { |
|
253 |
return spareField4; |
|
254 |
} |
|
255 |
|
|
256 |
public void setSpareField4(String spareField4) { |
|
257 |
this.spareField4 = spareField4; |
|
258 |
} |
|
259 |
|
|
260 |
@Override |
|
261 |
public String toString() { |
|
262 |
return "RecipeManage{" + |
|
263 |
"id=" + id + |
|
264 |
", productionLine=" + productionLine + |
|
265 |
", locationCode=" + locationCode + |
|
266 |
", productCode=" + productCode + |
|
267 |
", operationSteps=" + operationSteps + |
|
268 |
", techRequirement=" + techRequirement + |
|
269 |
", operationType=" + operationType + |
|
270 |
", stepSort=" + stepSort + |
|
271 |
", paramCode=" + paramCode + |
|
272 |
", materialCode=" + materialCode + |
|
273 |
", picture=" + picture + |
|
274 |
", remarks=" + remarks + |
|
275 |
", spareField1=" + spareField1 + |
|
276 |
", spareField2=" + spareField2 + |
|
277 |
", spareField3=" + spareField3 + |
|
278 |
", spareField4=" + spareField4 + |
|
279 |
"}"; |
|
280 |
} |
|
281 |
} |