2026-07-01 6b5f7c66fc40d7f6099d561e31a34fbd50dd20d3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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";
 
}