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 TaskSourceEnum
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// EDI
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("EDI")]
|
|
|
|
|
EDI,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 邮件
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("邮件")]
|
|
|
|
|
MAIL,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 邮件解析
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("邮件解析")]
|
|
|
|
|
MAIL_PARSE,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// FTP
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("FTP")]
|
|
|
|
|
FTP,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 转发
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("转发")]
|
|
|
|
|
RETRANSMIT,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 运踪
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("运踪")]
|
|
|
|
|
BILL_TRACE,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 网站查询
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("网站查询")]
|
|
|
|
|
WEBSITE,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 客户提交
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("客户提交")]
|
|
|
|
|
CUSTOMER_SUBMIT,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 系统
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("系统")]
|
|
|
|
|
SYSTEM
|
|
|
|
|
}
|
|
|
|
|
}
|