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 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
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 邮件解析配置表
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("email_parser_config")]
|
|
|
|
|
[Description("邮件解析配置表")]
|
|
|
|
|
public class EmailParserConfigInfo : EmailParserSystemDbEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 解析器代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PARSER_CODE { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 解析器名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PARSER_NAME { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 注入代码ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string INJECT_ID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 邮件标题匹配正则
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SUBJECT_REGEX_PATTERN { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 邮件正文匹配正则
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string BODY_REGEX_PATTERN { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 邮件发送人匹配正则
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SENDER_REGEX_PATTERN { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 邮件附件匹配正则
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ATTACH_REGEX_PATTERN { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 关联邮件账户数量
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<int> USE_EMAIL_ACCOUNT_NUM { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|