2026-06-30 24681c81c09022f584a57006f2534b5f74723414
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";
 
}