| | |
| | | package com.zy.asrs.wms.asrs.entity.enums; |
| | | |
| | | public enum ShelvesRuleDetlType { |
| | | |
| | | TASK_OR_LOC(1, "库存或任务中匹配相邻库位"), |
| | | SUGGEST(2, "推荐区域"), |
| | | COMPLETE(3, "完整巷道"), |
| | | ; |
| | | |
| | | |
| | | public Integer id; |
| | | public String desc; |
| | | |
| | | ShelvesRuleDetlType(Integer id, String desc) { |
| | | this.id = id; |
| | | this.desc = desc; |
| | | } |
| | | |
| | | } |
| | | package com.zy.asrs.wms.asrs.entity.enums;
|
| | |
|
| | | public enum ShelvesRuleDetlType {
|
| | |
|
| | | TASK_OR_LOC(1, "库存或任务中匹配相邻库位"),
|
| | | SUGGEST(2, "推荐区域"),
|
| | | COMPLETE(3, "完整巷道"),
|
| | | ;
|
| | |
|
| | |
|
| | | public Integer id;
|
| | | public String desc;
|
| | |
|
| | | ShelvesRuleDetlType(Integer id, String desc) {
|
| | | this.id = id;
|
| | | this.desc = desc;
|
| | | }
|
| | |
|
| | | }
|