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.
|
|
|
|
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 TaskFileCategoryEnum
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// BC-Booking Confirmation
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("Booking Confirmation")]
|
|
|
|
|
BC,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// BC-Booking Confirmation通知
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("Booking Confirmation Notice")]
|
|
|
|
|
BC_NOTICE,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Booking Confirmation
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("Booking Amendment")]
|
|
|
|
|
BC_MODIFY,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Booking Confirmation通知
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("Booking Amendment Notice")]
|
|
|
|
|
BC_MODIFY_NOTICE,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Booking Cancellation
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("Booking Cancellation")]
|
|
|
|
|
BC_CANCEL,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Booking Cancellation Notice
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("Booking Cancellation Notice")]
|
|
|
|
|
BC_CANCEL_NOTICE,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Booking Cancellation
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("Draft")]
|
|
|
|
|
DRAFT,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Booking Cancellation Notice
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("Draft Notice")]
|
|
|
|
|
DRAFT_NOTICE,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// SI Submitted
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("SI Submitted")]
|
|
|
|
|
SI_SUBMITTED,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Advisory
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("Advisory")]
|
|
|
|
|
ADVISORY,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 空
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("NONE")]
|
|
|
|
|
NONE,
|
|
|
|
|
}
|
|
|
|
|
}
|