| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | | package com.zy.asrs.wms.asrs.entity.enums;  |  |   |  | public enum LocRuleType {  |  |   |  |     D(0, "空托盘"),  |  |     F(1, "满托盘"),  |  |     ;  |  |   |  |   |  |     public Integer id;  |  |     public String desc;  |  |   |  |     LocRuleType(Integer id, String desc) {  |  |         this.id = id;  |  |         this.desc = desc;  |  |     }  |  |   |  | }  | 
 |