Commit eed9f0e7272d8ef7ab52bfa5f039c65d344e147f
1 parent
ea41cbef
修改库区service
Showing
3 changed files
with
253 additions
and
128 deletions
src/main/java/com/huaheng/pc/config/zone/service/ZoneServiceImpl.java
1 | 1 | package com.huaheng.pc.config.zone.service; |
2 | 2 | |
3 | +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; | |
4 | +import com.baomidou.mybatisplus.core.toolkit.Wrappers; | |
3 | 5 | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
4 | 6 | import com.huaheng.pc.config.zone.domain.Zone; |
5 | 7 | import com.huaheng.pc.config.zone.mapper.ZoneMapper; |
6 | 8 | import org.springframework.stereotype.Service; |
7 | 9 | |
10 | +import java.util.List; | |
11 | +import java.util.Map; | |
12 | + | |
8 | 13 | @Service("zone") |
9 | 14 | public class ZoneServiceImpl extends ServiceImpl<ZoneMapper, Zone> implements ZoneService { |
10 | 15 | |
16 | + @Override | |
17 | + public List<Map<String, Object>> getZoneCodeList() { | |
18 | + LambdaQueryWrapper<Zone> lambda = Wrappers.lambdaQuery(); | |
19 | + lambda.select(Zone::getId, Zone::getCode, Zone::getName); | |
20 | + return this.listMaps(lambda); | |
21 | + } | |
11 | 22 | } |
... | ... |
src/main/java/com/huaheng/pc/config/zoneCapacity/domain/ZoneCapacity.java
... | ... | @@ -4,15 +4,12 @@ import com.baomidou.mybatisplus.annotation.IdType; |
4 | 4 | import com.baomidou.mybatisplus.annotation.TableField; |
5 | 5 | import com.baomidou.mybatisplus.annotation.TableId; |
6 | 6 | import com.baomidou.mybatisplus.annotation.TableName; |
7 | -<<<<<<< HEAD | |
8 | 7 | import io.swagger.annotations.ApiModel; |
9 | 8 | import io.swagger.annotations.ApiModelProperty; |
10 | 9 | import java.io.Serializable; |
11 | 10 | import java.util.Date; |
12 | -import lombok.Data; | |
13 | 11 | |
14 | 12 | @ApiModel(value="com.huaheng.pc.config.zoneCapacity.domain.ZoneCapacity") |
15 | -@Data | |
16 | 13 | @TableName(value = "zone_capacity") |
17 | 14 | public class ZoneCapacity implements Serializable { |
18 | 15 | /** |
... | ... | @@ -20,255 +17,166 @@ public class ZoneCapacity implements Serializable { |
20 | 17 | */ |
21 | 18 | @TableId(value = "id", type = IdType.AUTO) |
22 | 19 | @ApiModelProperty(value="内部号") |
23 | -======= | |
24 | -import lombok.Data; | |
25 | - | |
26 | -import java.io.Serializable; | |
27 | -import java.util.Date; | |
28 | - | |
29 | -/** | |
30 | - * 库区容量 | |
31 | - * @author ricard | |
32 | - * @Date 2019.8.8 | |
33 | - */ | |
34 | - | |
35 | - | |
36 | -@Data | |
37 | -@TableName(value = "zone_capacity") | |
38 | -public class ZoneCapacity implements Serializable { | |
39 | - | |
40 | - /** | |
41 | - * 唯一值 | |
42 | - */ | |
43 | - @TableId(value = "id", type = IdType.AUTO) | |
44 | ->>>>>>> origin/develop | |
45 | 20 | private Integer id; |
46 | 21 | |
47 | 22 | /** |
48 | 23 | * 仓库 |
49 | 24 | */ |
50 | 25 | @TableField(value = "warehouseCode") |
51 | -<<<<<<< HEAD | |
52 | 26 | @ApiModelProperty(value="仓库") |
53 | -======= | |
54 | ->>>>>>> origin/develop | |
55 | 27 | private String warehouseCode; |
56 | 28 | |
57 | 29 | /** |
58 | 30 | * 货主 |
59 | 31 | */ |
60 | 32 | @TableField(value = "companyCode") |
61 | -<<<<<<< HEAD | |
62 | 33 | @ApiModelProperty(value="货主") |
63 | -======= | |
64 | ->>>>>>> origin/develop | |
65 | 34 | private String companyCode; |
66 | 35 | |
67 | 36 | /** |
68 | 37 | * 商品编码 |
69 | 38 | */ |
70 | 39 | @TableField(value = "materialCode") |
71 | -<<<<<<< HEAD | |
72 | 40 | @ApiModelProperty(value="商品编码") |
73 | -======= | |
74 | ->>>>>>> origin/develop | |
75 | 41 | private String materialCode; |
76 | 42 | |
77 | 43 | /** |
78 | 44 | * 商品名称 |
79 | 45 | */ |
80 | 46 | @TableField(value = "materialName") |
81 | -<<<<<<< HEAD | |
82 | 47 | @ApiModelProperty(value="商品名称") |
83 | -======= | |
84 | ->>>>>>> origin/develop | |
85 | 48 | private String materialName; |
86 | 49 | |
87 | 50 | /** |
88 | 51 | * 商品规格 |
89 | 52 | */ |
90 | 53 | @TableField(value = "materialSpec") |
91 | -<<<<<<< HEAD | |
92 | 54 | @ApiModelProperty(value="商品规格") |
93 | -======= | |
94 | ->>>>>>> origin/develop | |
95 | 55 | private String materialSpec; |
96 | 56 | |
97 | 57 | /** |
98 | 58 | * 商品单位 |
99 | 59 | */ |
100 | 60 | @TableField(value = "materialUnit") |
101 | -<<<<<<< HEAD | |
102 | 61 | @ApiModelProperty(value="商品单位") |
103 | -======= | |
104 | ->>>>>>> origin/develop | |
105 | 62 | private String materialUnit; |
106 | 63 | |
107 | 64 | /** |
108 | 65 | * 货位过滤条件 |
109 | 66 | */ |
110 | 67 | @TableField(value = "filterCode") |
111 | -<<<<<<< HEAD | |
112 | 68 | @ApiModelProperty(value="货位过滤条件") |
113 | -======= | |
114 | ->>>>>>> origin/develop | |
115 | 69 | private String filterCode; |
116 | 70 | |
117 | 71 | /** |
118 | 72 | * 最大数量 |
119 | 73 | */ |
120 | 74 | @TableField(value = "maxQty") |
121 | -<<<<<<< HEAD | |
122 | 75 | @ApiModelProperty(value="最大数量") |
123 | -======= | |
124 | ->>>>>>> origin/develop | |
125 | 76 | private Integer maxQty; |
126 | 77 | |
127 | 78 | /** |
128 | 79 | * 最小数量 |
129 | 80 | */ |
130 | 81 | @TableField(value = "minQty") |
131 | -<<<<<<< HEAD | |
132 | 82 | @ApiModelProperty(value="最小数量") |
133 | -======= | |
134 | ->>>>>>> origin/develop | |
135 | 83 | private Integer minQty; |
136 | 84 | |
137 | 85 | /** |
138 | 86 | * 创建时间 |
139 | 87 | */ |
140 | 88 | @TableField(value = "created") |
141 | -<<<<<<< HEAD | |
142 | 89 | @ApiModelProperty(value="创建时间") |
143 | -======= | |
144 | ->>>>>>> origin/develop | |
145 | 90 | private Date created; |
146 | 91 | |
147 | 92 | /** |
148 | 93 | * 创建用户 |
149 | 94 | */ |
150 | 95 | @TableField(value = "createdBy") |
151 | -<<<<<<< HEAD | |
152 | 96 | @ApiModelProperty(value="创建用户") |
153 | -======= | |
154 | ->>>>>>> origin/develop | |
155 | 97 | private String createdBy; |
156 | 98 | |
157 | 99 | /** |
158 | 100 | * 创建时间 |
159 | 101 | */ |
160 | 102 | @TableField(value = "lastUpdated") |
161 | -<<<<<<< HEAD | |
162 | 103 | @ApiModelProperty(value="创建时间") |
163 | -======= | |
164 | ->>>>>>> origin/develop | |
165 | 104 | private Date lastUpdated; |
166 | 105 | |
167 | 106 | /** |
168 | 107 | * 更新用户 |
169 | 108 | */ |
170 | 109 | @TableField(value = "lastUpdatedBy") |
171 | -<<<<<<< HEAD | |
172 | 110 | @ApiModelProperty(value="更新用户") |
173 | -======= | |
174 | ->>>>>>> origin/develop | |
175 | 111 | private String lastUpdatedBy; |
176 | 112 | |
177 | 113 | /** |
178 | 114 | * 数据版本 |
179 | 115 | */ |
180 | 116 | @TableField(value = "version") |
181 | -<<<<<<< HEAD | |
182 | 117 | @ApiModelProperty(value="数据版本") |
183 | -======= | |
184 | ->>>>>>> origin/develop | |
185 | 118 | private Integer version; |
186 | 119 | |
187 | 120 | /** |
188 | 121 | * 自定义字段1 |
189 | 122 | */ |
190 | 123 | @TableField(value = "userDef1") |
191 | -<<<<<<< HEAD | |
192 | 124 | @ApiModelProperty(value="自定义字段1") |
193 | -======= | |
194 | ->>>>>>> origin/develop | |
195 | 125 | private String userDef1; |
196 | 126 | |
197 | 127 | /** |
198 | 128 | * 自定义字段2 |
199 | 129 | */ |
200 | 130 | @TableField(value = "userDef2") |
201 | -<<<<<<< HEAD | |
202 | 131 | @ApiModelProperty(value="自定义字段2") |
203 | -======= | |
204 | ->>>>>>> origin/develop | |
205 | 132 | private String userDef2; |
206 | 133 | |
207 | 134 | /** |
208 | 135 | * 自定义字段3 |
209 | 136 | */ |
210 | 137 | @TableField(value = "userDef3") |
211 | -<<<<<<< HEAD | |
212 | 138 | @ApiModelProperty(value="自定义字段3") |
213 | -======= | |
214 | ->>>>>>> origin/develop | |
215 | 139 | private String userDef3; |
216 | 140 | |
217 | 141 | /** |
218 | 142 | * 自定义字段4 |
219 | 143 | */ |
220 | 144 | @TableField(value = "userDef4") |
221 | -<<<<<<< HEAD | |
222 | 145 | @ApiModelProperty(value="自定义字段4") |
223 | -======= | |
224 | ->>>>>>> origin/develop | |
225 | 146 | private String userDef4; |
226 | 147 | |
227 | 148 | /** |
228 | 149 | * 自定义字段5 |
229 | 150 | */ |
230 | 151 | @TableField(value = "userDef5") |
231 | -<<<<<<< HEAD | |
232 | 152 | @ApiModelProperty(value="自定义字段5") |
233 | -======= | |
234 | ->>>>>>> origin/develop | |
235 | 153 | private String userDef5; |
236 | 154 | |
237 | 155 | /** |
238 | 156 | * 自定义字段6 |
239 | 157 | */ |
240 | 158 | @TableField(value = "userDef6") |
241 | -<<<<<<< HEAD | |
242 | 159 | @ApiModelProperty(value="自定义字段6") |
243 | -======= | |
244 | ->>>>>>> origin/develop | |
245 | 160 | private String userDef6; |
246 | 161 | |
247 | 162 | /** |
248 | 163 | * 自定义字段7 |
249 | 164 | */ |
250 | 165 | @TableField(value = "userDef7") |
251 | -<<<<<<< HEAD | |
252 | 166 | @ApiModelProperty(value="自定义字段7") |
253 | -======= | |
254 | ->>>>>>> origin/develop | |
255 | 167 | private String userDef7; |
256 | 168 | |
257 | 169 | /** |
258 | 170 | * 自定义字段8 |
259 | 171 | */ |
260 | 172 | @TableField(value = "userDef8") |
261 | -<<<<<<< HEAD | |
262 | 173 | @ApiModelProperty(value="自定义字段8") |
263 | -======= | |
264 | ->>>>>>> origin/develop | |
265 | 174 | private String userDef8; |
266 | 175 | |
267 | 176 | /** |
268 | 177 | * 处理标记 |
269 | 178 | */ |
270 | 179 | @TableField(value = "processStamp") |
271 | -<<<<<<< HEAD | |
272 | 180 | @ApiModelProperty(value="处理标记") |
273 | 181 | private String processStamp; |
274 | 182 | |
... | ... | @@ -319,230 +227,436 @@ public class ZoneCapacity implements Serializable { |
319 | 227 | public static final String COL_USERDEF8 = "userDef8"; |
320 | 228 | |
321 | 229 | public static final String COL_PROCESSSTAMP = "processStamp"; |
322 | -} | |
323 | -======= | |
324 | - private String processStamp; | |
325 | 230 | |
231 | + /** | |
232 | + * 获取内部号 | |
233 | + * | |
234 | + * @return id - 内部号 | |
235 | + */ | |
326 | 236 | public Integer getId() { |
327 | 237 | return id; |
328 | 238 | } |
329 | 239 | |
240 | + /** | |
241 | + * 设置内部号 | |
242 | + * | |
243 | + * @param id 内部号 | |
244 | + */ | |
330 | 245 | public void setId(Integer id) { |
331 | 246 | this.id = id; |
332 | 247 | } |
333 | 248 | |
249 | + /** | |
250 | + * 获取仓库 | |
251 | + * | |
252 | + * @return warehouseCode - 仓库 | |
253 | + */ | |
334 | 254 | public String getWarehouseCode() { |
335 | 255 | return warehouseCode; |
336 | 256 | } |
337 | 257 | |
258 | + /** | |
259 | + * 设置仓库 | |
260 | + * | |
261 | + * @param warehouseCode 仓库 | |
262 | + */ | |
338 | 263 | public void setWarehouseCode(String warehouseCode) { |
339 | 264 | this.warehouseCode = warehouseCode; |
340 | 265 | } |
341 | 266 | |
267 | + /** | |
268 | + * 获取货主 | |
269 | + * | |
270 | + * @return companyCode - 货主 | |
271 | + */ | |
342 | 272 | public String getCompanyCode() { |
343 | 273 | return companyCode; |
344 | 274 | } |
345 | 275 | |
276 | + /** | |
277 | + * 设置货主 | |
278 | + * | |
279 | + * @param companyCode 货主 | |
280 | + */ | |
346 | 281 | public void setCompanyCode(String companyCode) { |
347 | 282 | this.companyCode = companyCode; |
348 | 283 | } |
349 | 284 | |
285 | + /** | |
286 | + * 获取商品编码 | |
287 | + * | |
288 | + * @return materialCode - 商品编码 | |
289 | + */ | |
350 | 290 | public String getMaterialCode() { |
351 | 291 | return materialCode; |
352 | 292 | } |
353 | 293 | |
294 | + /** | |
295 | + * 设置商品编码 | |
296 | + * | |
297 | + * @param materialCode 商品编码 | |
298 | + */ | |
354 | 299 | public void setMaterialCode(String materialCode) { |
355 | 300 | this.materialCode = materialCode; |
356 | 301 | } |
357 | 302 | |
303 | + /** | |
304 | + * 获取商品名称 | |
305 | + * | |
306 | + * @return materialName - 商品名称 | |
307 | + */ | |
358 | 308 | public String getMaterialName() { |
359 | 309 | return materialName; |
360 | 310 | } |
361 | 311 | |
312 | + /** | |
313 | + * 设置商品名称 | |
314 | + * | |
315 | + * @param materialName 商品名称 | |
316 | + */ | |
362 | 317 | public void setMaterialName(String materialName) { |
363 | 318 | this.materialName = materialName; |
364 | 319 | } |
365 | 320 | |
321 | + /** | |
322 | + * 获取商品规格 | |
323 | + * | |
324 | + * @return materialSpec - 商品规格 | |
325 | + */ | |
366 | 326 | public String getMaterialSpec() { |
367 | 327 | return materialSpec; |
368 | 328 | } |
369 | 329 | |
330 | + /** | |
331 | + * 设置商品规格 | |
332 | + * | |
333 | + * @param materialSpec 商品规格 | |
334 | + */ | |
370 | 335 | public void setMaterialSpec(String materialSpec) { |
371 | 336 | this.materialSpec = materialSpec; |
372 | 337 | } |
373 | 338 | |
339 | + /** | |
340 | + * 获取商品单位 | |
341 | + * | |
342 | + * @return materialUnit - 商品单位 | |
343 | + */ | |
374 | 344 | public String getMaterialUnit() { |
375 | 345 | return materialUnit; |
376 | 346 | } |
377 | 347 | |
348 | + /** | |
349 | + * 设置商品单位 | |
350 | + * | |
351 | + * @param materialUnit 商品单位 | |
352 | + */ | |
378 | 353 | public void setMaterialUnit(String materialUnit) { |
379 | 354 | this.materialUnit = materialUnit; |
380 | 355 | } |
381 | 356 | |
357 | + /** | |
358 | + * 获取货位过滤条件 | |
359 | + * | |
360 | + * @return filterCode - 货位过滤条件 | |
361 | + */ | |
382 | 362 | public String getFilterCode() { |
383 | 363 | return filterCode; |
384 | 364 | } |
385 | 365 | |
366 | + /** | |
367 | + * 设置货位过滤条件 | |
368 | + * | |
369 | + * @param filterCode 货位过滤条件 | |
370 | + */ | |
386 | 371 | public void setFilterCode(String filterCode) { |
387 | 372 | this.filterCode = filterCode; |
388 | 373 | } |
389 | 374 | |
375 | + /** | |
376 | + * 获取最大数量 | |
377 | + * | |
378 | + * @return maxQty - 最大数量 | |
379 | + */ | |
390 | 380 | public Integer getMaxQty() { |
391 | 381 | return maxQty; |
392 | 382 | } |
393 | 383 | |
384 | + /** | |
385 | + * 设置最大数量 | |
386 | + * | |
387 | + * @param maxQty 最大数量 | |
388 | + */ | |
394 | 389 | public void setMaxQty(Integer maxQty) { |
395 | 390 | this.maxQty = maxQty; |
396 | 391 | } |
397 | 392 | |
393 | + /** | |
394 | + * 获取最小数量 | |
395 | + * | |
396 | + * @return minQty - 最小数量 | |
397 | + */ | |
398 | 398 | public Integer getMinQty() { |
399 | 399 | return minQty; |
400 | 400 | } |
401 | 401 | |
402 | + /** | |
403 | + * 设置最小数量 | |
404 | + * | |
405 | + * @param minQty 最小数量 | |
406 | + */ | |
402 | 407 | public void setMinQty(Integer minQty) { |
403 | 408 | this.minQty = minQty; |
404 | 409 | } |
405 | 410 | |
411 | + /** | |
412 | + * 获取创建时间 | |
413 | + * | |
414 | + * @return created - 创建时间 | |
415 | + */ | |
406 | 416 | public Date getCreated() { |
407 | 417 | return created; |
408 | 418 | } |
409 | 419 | |
420 | + /** | |
421 | + * 设置创建时间 | |
422 | + * | |
423 | + * @param created 创建时间 | |
424 | + */ | |
410 | 425 | public void setCreated(Date created) { |
411 | 426 | this.created = created; |
412 | 427 | } |
413 | 428 | |
429 | + /** | |
430 | + * 获取创建用户 | |
431 | + * | |
432 | + * @return createdBy - 创建用户 | |
433 | + */ | |
414 | 434 | public String getCreatedBy() { |
415 | 435 | return createdBy; |
416 | 436 | } |
417 | 437 | |
438 | + /** | |
439 | + * 设置创建用户 | |
440 | + * | |
441 | + * @param createdBy 创建用户 | |
442 | + */ | |
418 | 443 | public void setCreatedBy(String createdBy) { |
419 | 444 | this.createdBy = createdBy; |
420 | 445 | } |
421 | 446 | |
447 | + /** | |
448 | + * 获取创建时间 | |
449 | + * | |
450 | + * @return lastUpdated - 创建时间 | |
451 | + */ | |
422 | 452 | public Date getLastUpdated() { |
423 | 453 | return lastUpdated; |
424 | 454 | } |
425 | 455 | |
456 | + /** | |
457 | + * 设置创建时间 | |
458 | + * | |
459 | + * @param lastUpdated 创建时间 | |
460 | + */ | |
426 | 461 | public void setLastUpdated(Date lastUpdated) { |
427 | 462 | this.lastUpdated = lastUpdated; |
428 | 463 | } |
429 | 464 | |
465 | + /** | |
466 | + * 获取更新用户 | |
467 | + * | |
468 | + * @return lastUpdatedBy - 更新用户 | |
469 | + */ | |
430 | 470 | public String getLastUpdatedBy() { |
431 | 471 | return lastUpdatedBy; |
432 | 472 | } |
433 | 473 | |
474 | + /** | |
475 | + * 设置更新用户 | |
476 | + * | |
477 | + * @param lastUpdatedBy 更新用户 | |
478 | + */ | |
434 | 479 | public void setLastUpdatedBy(String lastUpdatedBy) { |
435 | 480 | this.lastUpdatedBy = lastUpdatedBy; |
436 | 481 | } |
437 | 482 | |
483 | + /** | |
484 | + * 获取数据版本 | |
485 | + * | |
486 | + * @return version - 数据版本 | |
487 | + */ | |
438 | 488 | public Integer getVersion() { |
439 | 489 | return version; |
440 | 490 | } |
441 | 491 | |
492 | + /** | |
493 | + * 设置数据版本 | |
494 | + * | |
495 | + * @param version 数据版本 | |
496 | + */ | |
442 | 497 | public void setVersion(Integer version) { |
443 | 498 | this.version = version; |
444 | 499 | } |
445 | 500 | |
501 | + /** | |
502 | + * 获取自定义字段1 | |
503 | + * | |
504 | + * @return userDef1 - 自定义字段1 | |
505 | + */ | |
446 | 506 | public String getUserDef1() { |
447 | 507 | return userDef1; |
448 | 508 | } |
449 | 509 | |
510 | + /** | |
511 | + * 设置自定义字段1 | |
512 | + * | |
513 | + * @param userDef1 自定义字段1 | |
514 | + */ | |
450 | 515 | public void setUserDef1(String userDef1) { |
451 | 516 | this.userDef1 = userDef1; |
452 | 517 | } |
453 | 518 | |
519 | + /** | |
520 | + * 获取自定义字段2 | |
521 | + * | |
522 | + * @return userDef2 - 自定义字段2 | |
523 | + */ | |
454 | 524 | public String getUserDef2() { |
455 | 525 | return userDef2; |
456 | 526 | } |
457 | 527 | |
528 | + /** | |
529 | + * 设置自定义字段2 | |
530 | + * | |
531 | + * @param userDef2 自定义字段2 | |
532 | + */ | |
458 | 533 | public void setUserDef2(String userDef2) { |
459 | 534 | this.userDef2 = userDef2; |
460 | 535 | } |
461 | 536 | |
537 | + /** | |
538 | + * 获取自定义字段3 | |
539 | + * | |
540 | + * @return userDef3 - 自定义字段3 | |
541 | + */ | |
462 | 542 | public String getUserDef3() { |
463 | 543 | return userDef3; |
464 | 544 | } |
465 | 545 | |
546 | + /** | |
547 | + * 设置自定义字段3 | |
548 | + * | |
549 | + * @param userDef3 自定义字段3 | |
550 | + */ | |
466 | 551 | public void setUserDef3(String userDef3) { |
467 | 552 | this.userDef3 = userDef3; |
468 | 553 | } |
469 | 554 | |
555 | + /** | |
556 | + * 获取自定义字段4 | |
557 | + * | |
558 | + * @return userDef4 - 自定义字段4 | |
559 | + */ | |
470 | 560 | public String getUserDef4() { |
471 | 561 | return userDef4; |
472 | 562 | } |
473 | 563 | |
564 | + /** | |
565 | + * 设置自定义字段4 | |
566 | + * | |
567 | + * @param userDef4 自定义字段4 | |
568 | + */ | |
474 | 569 | public void setUserDef4(String userDef4) { |
475 | 570 | this.userDef4 = userDef4; |
476 | 571 | } |
477 | 572 | |
573 | + /** | |
574 | + * 获取自定义字段5 | |
575 | + * | |
576 | + * @return userDef5 - 自定义字段5 | |
577 | + */ | |
478 | 578 | public String getUserDef5() { |
479 | 579 | return userDef5; |
480 | 580 | } |
481 | 581 | |
582 | + /** | |
583 | + * 设置自定义字段5 | |
584 | + * | |
585 | + * @param userDef5 自定义字段5 | |
586 | + */ | |
482 | 587 | public void setUserDef5(String userDef5) { |
483 | 588 | this.userDef5 = userDef5; |
484 | 589 | } |
485 | 590 | |
591 | + /** | |
592 | + * 获取自定义字段6 | |
593 | + * | |
594 | + * @return userDef6 - 自定义字段6 | |
595 | + */ | |
486 | 596 | public String getUserDef6() { |
487 | 597 | return userDef6; |
488 | 598 | } |
489 | 599 | |
600 | + /** | |
601 | + * 设置自定义字段6 | |
602 | + * | |
603 | + * @param userDef6 自定义字段6 | |
604 | + */ | |
490 | 605 | public void setUserDef6(String userDef6) { |
491 | 606 | this.userDef6 = userDef6; |
492 | 607 | } |
493 | 608 | |
609 | + /** | |
610 | + * 获取自定义字段7 | |
611 | + * | |
612 | + * @return userDef7 - 自定义字段7 | |
613 | + */ | |
494 | 614 | public String getUserDef7() { |
495 | 615 | return userDef7; |
496 | 616 | } |
497 | 617 | |
618 | + /** | |
619 | + * 设置自定义字段7 | |
620 | + * | |
621 | + * @param userDef7 自定义字段7 | |
622 | + */ | |
498 | 623 | public void setUserDef7(String userDef7) { |
499 | 624 | this.userDef7 = userDef7; |
500 | 625 | } |
501 | 626 | |
627 | + /** | |
628 | + * 获取自定义字段8 | |
629 | + * | |
630 | + * @return userDef8 - 自定义字段8 | |
631 | + */ | |
502 | 632 | public String getUserDef8() { |
503 | 633 | return userDef8; |
504 | 634 | } |
505 | 635 | |
636 | + /** | |
637 | + * 设置自定义字段8 | |
638 | + * | |
639 | + * @param userDef8 自定义字段8 | |
640 | + */ | |
506 | 641 | public void setUserDef8(String userDef8) { |
507 | 642 | this.userDef8 = userDef8; |
508 | 643 | } |
509 | 644 | |
645 | + /** | |
646 | + * 获取处理标记 | |
647 | + * | |
648 | + * @return processStamp - 处理标记 | |
649 | + */ | |
510 | 650 | public String getProcessStamp() { |
511 | 651 | return processStamp; |
512 | 652 | } |
513 | 653 | |
654 | + /** | |
655 | + * 设置处理标记 | |
656 | + * | |
657 | + * @param processStamp 处理标记 | |
658 | + */ | |
514 | 659 | public void setProcessStamp(String processStamp) { |
515 | 660 | this.processStamp = processStamp; |
516 | 661 | } |
517 | - | |
518 | - @Override | |
519 | - public String toString() { | |
520 | - return "ZoneCapacity{" + | |
521 | - "id=" + id + | |
522 | - ", warehouseCode='" + warehouseCode + '\'' + | |
523 | - ", companyCode='" + companyCode + '\'' + | |
524 | - ", materialCode='" + materialCode + '\'' + | |
525 | - ", materialName='" + materialName + '\'' + | |
526 | - ", materialSpec='" + materialSpec + '\'' + | |
527 | - ", materialUnit='" + materialUnit + '\'' + | |
528 | - ", filterCode='" + filterCode + '\'' + | |
529 | - ", maxQty=" + maxQty + | |
530 | - ", minQty=" + minQty + | |
531 | - ", created=" + created + | |
532 | - ", createdBy='" + createdBy + '\'' + | |
533 | - ", lastUpdated=" + lastUpdated + | |
534 | - ", lastUpdatedBy='" + lastUpdatedBy + '\'' + | |
535 | - ", version=" + version + | |
536 | - ", userDef1='" + userDef1 + '\'' + | |
537 | - ", userDef2='" + userDef2 + '\'' + | |
538 | - ", userDef3='" + userDef3 + '\'' + | |
539 | - ", userDef4='" + userDef4 + '\'' + | |
540 | - ", userDef5='" + userDef5 + '\'' + | |
541 | - ", userDef6='" + userDef6 + '\'' + | |
542 | - ", userDef7='" + userDef7 + '\'' + | |
543 | - ", userDef8='" + userDef8 + '\'' + | |
544 | - ", processStamp='" + processStamp + '\'' + | |
545 | - '}'; | |
546 | - } | |
547 | -} | |
548 | ->>>>>>> origin/develop | |
662 | +} | |
549 | 663 | \ No newline at end of file |
... | ... |
src/main/java/com/huaheng/pc/config/zoneCapacity/mapper/ZoneCapacityMapper.java