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.
32 lines
691 B
C#
32 lines
691 B
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 TaskOperTypeEnum
|
|
{
|
|
/// <summary>
|
|
/// 完成任务
|
|
/// </summary>
|
|
[Description("完成任务")]
|
|
COMPLETE_TASK,
|
|
/// <summary>
|
|
/// 取消任务
|
|
/// </summary>
|
|
[Description("取消任务")]
|
|
CANCEL_TASK,
|
|
/// <summary>
|
|
/// 挂起任务
|
|
/// </summary>
|
|
[Description("挂起任务")]
|
|
PENDING_TASK,
|
|
}
|
|
}
|