using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 邮件解析配置表
///
public class EmailParserConfigDto
{
///
/// 主键
///
public string GID { get; set; }
///
/// 解析器代码
///
public string ParserCode { get; set; }
///
/// 解析器名称
///
public string ParserName { get; set; }
///
/// 注入代码ID
///
public string InjectId { get; set; }
///
/// 邮件标题匹配正则
///
public string SubjectRegexPattern { get; set; }
///
/// 邮件正文匹配正则
///
public string BodyRegexPattern { get; set; }
///
/// 邮件发送人匹配正则
///
public string SenderRegexPattern { get; set; }
///
/// 邮件附件匹配正则
///
public string AttachRegexPattern { get; set; }
///
/// 创建时间
///
public DateTime CreatedTime { get; set; }
///
/// 更新时间
///
public DateTime UpdatedTime { get; set; }
///
/// 注入代码
///
public string InjectCode { get; set; }
///
/// 注入名称
///
public string InjectName { get; set; }
///
/// 注入代码完整路径
///
public string InjectFullName { get; set; }
}
}