using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 任务来源枚举
///
public enum TaskSourceEnum
{
///
/// EDI
///
[Description("EDI")]
EDI,
///
/// 邮件
///
[Description("邮件")]
MAIL,
///
/// 邮件解析
///
[Description("邮件解析")]
MAIL_PARSE,
///
/// FTP
///
[Description("FTP")]
FTP,
///
/// 转发
///
[Description("转发")]
RETRANSMIT,
///
/// 运踪
///
[Description("运踪")]
BILL_TRACE,
///
/// 网站查询
///
[Description("网站查询")]
WEBSITE,
///
/// 客户提交
///
[Description("客户提交")]
CUSTOMER_SUBMIT,
///
/// 系统
///
[Description("系统")]
SYSTEM
}
}