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