1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.vincent.rsf.server.manager.enums;
|
| public enum WarehouseAreasType {
|
| WAREHOUSE_AREAS_TYPE_RECEIPT("receipt", "收货区"),
| WAREHOUSE_AREAS_TYPE_DELIVERY("delivery", "待发区"),
| ORDER_WORK_TYPE_COLLECTION("collection", "集货区"),
| ORDER_WORK_TYPE_CTU("CTU", "CTU库区"),
| ORDER_WORK_TYPE_CRN("CRN", "堆垛机")
| ;
|
| WarehouseAreasType(String type, String desc) {
| this.type = type;
| this.desc = desc;
| }
|
| public String type;
| public String desc;
| }
|
|