You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
576 B
C#
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";
|
|
}
|
|
}
|