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 TaskShareLinkStatusEnum
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 有效的
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("有效的")]
|
|
|
|
|
ACTIVE,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 失效
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("失效")]
|
|
|
|
|
EXPIRE,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 取消
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("取消")]
|
|
|
|
|
CANCEL,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 重复KEY被取消
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("重复KEY被取消")]
|
|
|
|
|
REPEAT_KEY,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 已完结
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("已完结")]
|
|
|
|
|
COMPLETE,
|
|
|
|
|
}
|
|
|
|
|
}
|