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";
|
|
}
|