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 TaskStatusEnum
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 待处理
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("待处理")]
|
|
|
|
|
Create,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 已转发
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("已转发")]
|
|
|
|
|
Retransmit,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 已完成
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("已完成")]
|
|
|
|
|
Complete,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 已取消
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("已取消")]
|
|
|
|
|
Cancel,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 已挂起
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("已挂起")]
|
|
|
|
|
Pending,
|
|
|
|
|
}
|
|
|
|
|
}
|