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.

81 lines
1.9 KiB
C#

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 GID { get; set; }
/// <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; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreatedTime { get; set; }
/// <summary>
/// 更新时间
/// </summary>
public DateTime UpdatedTime { get; set; }
/// <summary>
/// 注入代码
/// </summary>
public string InjectCode { get; set; }
/// <summary>
/// 注入名称
/// </summary>
public string InjectName { get; set; }
/// <summary>
/// 注入代码完整路径
/// </summary>
public string InjectFullName { get; set; }
}
}