自动化立体仓库 - WMS系统
skyouc
1 天以前 30bb734c3c5de070ab9513128980bfdbe1880857
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.zy.asrs.enums;
 
/**
 * 库区类型
 * @author Ryan
 * @date 2025/12/3 9:59
 * @return null
 */
public enum LocAreaType {
 
    //入库缓存区
    LOC_AREA_TYPE_IN_CACHE("5", "入库缓存区"),
    //堆垛机
    LOC_AREA_TYPE_CRN("1", "立库区"),
 
    LOC_AREA_TYPE_SO("2", "出库SO区"),
 
    LOC_AREA_TYPE_EO("3", "出库EO区")
    ;
 
    public Long type;
 
    public String desc;
 
    LocAreaType(String type, String desc) {
        this.type = Long.valueOf(type);
        this.desc = desc;
    }
 
}