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.
44 lines
826 B
C#
44 lines
826 B
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,
|
|
}
|
|
}
|