1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  | 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;  
 |      }  
 |    
 |  }  
 |  
  |