2026-06-29 940c8481d2fdcf51341db4ccd6fd6fcc2d43debb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cn.iocoder.yudao.module.wms.enums;
 
/**
 * WMS 字典类型常量
 *
 * @author 芋道源码
 */
public interface DictTypeConstants {
 
    String MERCHANT_TYPE = "merchant_type";
    String ORDER_STATUS = "wms_order_status";
    String ORDER_TYPE = "wms_order_type";
    String RECEIPT_ORDER_TYPE = "wms_receipt_order_type";
    String SHIPMENT_ORDER_TYPE = "wms_shipment_order_type";
 
    String WMS_RESERVE_BIZ_TYPE = "wms_reserve_biz_type";
    String WMS_RESERVE_STATUS = "wms_reserve_status";
    String WMS_TRANSACTION_TYPE = "wms_transaction_type";
 
}