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.
37 lines
1006 B
C#
37 lines
1006 B
C#
using Furion.DatabaseAccessor;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
|
|
namespace Myshipping.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 邮件解析配置关联解析处理机
|
|
/// </summary>
|
|
[SugarTable("email_parser_config_processor_relation")]
|
|
[Description("邮件解析配置关联解析处理机")]
|
|
public class EmailParserConfigProcessorRelationInfo
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true)]
|
|
public string GID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 邮箱账户主键
|
|
/// </summary>
|
|
public string EMAIL_PARSER_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 邮件解析器主键
|
|
/// </summary>
|
|
public string EMAIL_PROCESSOR_ID { get; set; }
|
|
}
|
|
}
|