using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 任务状态枚举
///
public enum TaskStatusEnum
{
///
/// 待处理
///
[Description("待处理")]
Create,
///
/// 已转发
///
[Description("已转发")]
Retransmit,
///
/// 已完成
///
[Description("已完成")]
Complete,
///
/// 已取消
///
[Description("已取消")]
Cancel,
///
/// 已挂起
///
[Description("已挂起")]
Pending,
}
}