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.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 邮件解析配置表
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class EmailParserConfigDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 解析器代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ParserCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 解析器名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ParserName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 注入代码ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string InjectId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 邮件标题匹配正则
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SubjectRegexPattern { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 邮件正文匹配正则
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string BodyRegexPattern { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 邮件发送人匹配正则
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SenderRegexPattern { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 邮件附件匹配正则
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string AttachRegexPattern { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|