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.
35 lines
941 B
C#
35 lines
941 B
C#
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using SqlSugar;
|
|
using DS.Module.Core.Data;
|
|
|
|
namespace DS.WMS.Core.EmailParse.Entity
|
|
{
|
|
/// <summary>
|
|
/// 邮件解析配置关联解析处理机
|
|
/// </summary>
|
|
[SugarTable("email_parser_config_processor_relation")]
|
|
public class EmailParserConfigProcessorRelationInfo : BaseModel<long>
|
|
{
|
|
/// <summary>
|
|
/// GID
|
|
/// </summary>
|
|
public string GID { get; set; }
|
|
/// <summary>
|
|
/// 邮箱账户主键
|
|
/// </summary>
|
|
public string EmailParserId { get; set; }
|
|
/// <summary>
|
|
/// 邮件解析器主键
|
|
/// </summary>
|
|
public string EmailProcessorId { get; set; }
|
|
|
|
}
|
|
}
|