skyouc
2025-03-25 1dfabf4c4071b77bcd63c30bcbbf58a1a301422a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
}