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; } }