ds8-solution-pro/ds-wms-service/DS.Module.Core/Constants/MappingModuleConst.cs

20 lines
576 B
C#

namespace DS.Module.Core.Constants
{
/// <summary>
/// 用于定义映射字典中的模块名称
/// </summary>
public class MappingModuleConst
{
/// <summary>
/// 船公司基础映射模块
/// </summary>
public const string CONST_MAPPING_CARRIER_MODULE = "CarrierBaseMapping";
//收货地名称解析装货港港口
public const string RECEIPT_TO_PORTLOAD = "ReceiptToPortLoad";
//交货地名称解析卸货港港口
public const string DELIVERY_TO_PORT = "DeliveryToPort";
}
}