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