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.
65 lines
1.2 KiB
C#
65 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 订舱或截单通道枚举
|
|
/// </summary>
|
|
public enum EDIRouteEnum
|
|
{
|
|
/// <summary>
|
|
/// 德翔
|
|
/// </summary>
|
|
TSL,
|
|
/// <summary>
|
|
/// 太平
|
|
/// </summary>
|
|
PIL,
|
|
/// <summary>
|
|
/// 阳明
|
|
/// </summary>
|
|
YML,
|
|
/// <summary>
|
|
/// 易通(适用ONE)
|
|
/// </summary>
|
|
YT,
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
WY,
|
|
/// <summary>
|
|
/// 未指定
|
|
/// </summary>
|
|
NULL,
|
|
|
|
/// <summary>
|
|
/// 阿联酋航运
|
|
/// </summary>
|
|
ESL,
|
|
/// <summary>
|
|
/// 玛丽亚娜
|
|
/// </summary>
|
|
MELL,
|
|
/// <summary>
|
|
/// 沃尔塔航运
|
|
/// </summary>
|
|
VOL,
|
|
/// <summary>
|
|
/// INTTRA
|
|
/// </summary>
|
|
INTTRA,
|
|
/// <summary>
|
|
/// SITC
|
|
/// </summary>
|
|
SITC,
|
|
/// <summary>
|
|
/// INTTRA
|
|
/// </summary>
|
|
VOLTA
|
|
}
|
|
}
|