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.
130 lines
2.7 KiB
C#
130 lines
2.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 任务类型基础枚举
|
|
/// </summary>
|
|
public enum TaskBaseTypeEnum
|
|
{
|
|
/// <summary>
|
|
/// BC
|
|
/// </summary>
|
|
[Description("BC")]
|
|
BC,
|
|
|
|
/// <summary>
|
|
/// DRAFT
|
|
/// </summary>
|
|
[Description("DRAFT")]
|
|
DRAFT,
|
|
|
|
/// <summary>
|
|
/// CANCELLATION
|
|
/// </summary>
|
|
[Description("CANCELLATION")]
|
|
CANCELLATION,
|
|
|
|
/// <summary>
|
|
/// SEAWAY BILL下载
|
|
/// </summary>
|
|
[Description("SEAWAY BILL")]
|
|
SEAWAYBILL_DOWN,
|
|
|
|
/// <summary>
|
|
/// 提单正本下载
|
|
/// </summary>
|
|
[Description("提单正本下载")]
|
|
ORIGINAL_DOWN,
|
|
|
|
/// <summary>
|
|
/// 未装载
|
|
/// </summary>
|
|
[Description("未装载")]
|
|
NOT_LOADED,
|
|
|
|
/// <summary>
|
|
/// 未装船
|
|
/// </summary>
|
|
[Description("未装船")]
|
|
NOT_SHIPMENG,
|
|
|
|
/// <summary>
|
|
/// 航次账单邮件
|
|
/// </summary>
|
|
[Description("航次账单")]
|
|
INVOICE_BILL_MAIL,
|
|
|
|
/// <summary>
|
|
/// VGM对比
|
|
/// </summary>
|
|
[Description("VGM对比")]
|
|
VGM_COMPARE,
|
|
|
|
/// <summary>
|
|
/// 电放通知
|
|
/// </summary>
|
|
[Description("电放通知")]
|
|
TELEX_NOTICE,
|
|
|
|
/// <summary>
|
|
/// SI回执
|
|
/// </summary>
|
|
[Description("SI回执")]
|
|
SI_FEEDBACK,
|
|
|
|
/// <summary>
|
|
/// 单票账单
|
|
/// </summary>
|
|
[Description("单票账单")]
|
|
PER_BILL,
|
|
|
|
/// <summary>
|
|
/// 换船通知
|
|
/// </summary>
|
|
[Description("换船通知")]
|
|
CHANGE_SHIP,
|
|
|
|
/// <summary>
|
|
/// 取消换船通知
|
|
/// </summary>
|
|
[Description("取消换船通知")]
|
|
ABORT_CHANGE_SHIP,
|
|
|
|
/// <summary>
|
|
/// 下货纸
|
|
/// </summary>
|
|
[Description("下货纸")]
|
|
SHIPPING_ORDER,
|
|
|
|
/// <summary>
|
|
/// 正本缺失
|
|
/// </summary>
|
|
[Description("正本缺失")]
|
|
ORIGINAL_LOST,
|
|
|
|
/// <summary>
|
|
/// VGM异常
|
|
/// </summary>
|
|
[Description("VGM异常")]
|
|
VGM_EXCEPT,
|
|
|
|
/// <summary>
|
|
/// 比对下货纸
|
|
/// </summary>
|
|
[Description("比对下货纸")]
|
|
SHIPPING_ORDER_COMPARE,
|
|
|
|
/// <summary>
|
|
/// 派车
|
|
/// </summary>
|
|
[Description("派车")]
|
|
TRUCK_DISPATCH,
|
|
}
|
|
}
|