using Furion.DatabaseAccessor; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; using System.ComponentModel; namespace Myshipping.Application.Entity { /// /// 邮件解析配置表 /// [SugarTable("email_parser_config")] [Description("邮件解析配置表")] public class EmailParserConfigInfo : EmailParserSystemDbEntity { /// /// 解析器代码 /// public string PARSER_CODE { get; set; } /// /// 解析器名称 /// public string PARSER_NAME { get; set; } /// /// 注入代码ID /// public string INJECT_ID { get; set; } /// /// 邮件标题匹配正则 /// public string SUBJECT_REGEX_PATTERN { get; set; } /// /// 邮件正文匹配正则 /// public string BODY_REGEX_PATTERN { get; set; } /// /// 邮件发送人匹配正则 /// public string SENDER_REGEX_PATTERN { get; set; } /// /// 邮件附件匹配正则 /// public string ATTACH_REGEX_PATTERN { get; set; } } }