package com.vincent.rsf.server.common.enums; /** * @author Ryan * @version 1.0 * @title WarehouseAreaType * @description * @create 2025/3/11 10:26 */ public enum WarehouseAreaType { //订单类型 WAREHOUSE_AREA_RECEIPT("receipt", "收货区"), WAREHOUSE_AREA_COLLECTION("collection", "集货区"), WAREHOUSE_AREA_DELIVERY("delivery", "发货区"), ; WarehouseAreaType(String type, String desc) { this.type = type; this.desc = desc; } public String type; public String desc; }