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.
44 lines
1.2 KiB
C#
44 lines
1.2 KiB
C#
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Security.Cryptography;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.EmailParse.Entity
|
|
{
|
|
/// <summary>
|
|
/// 邮件账户关联解析器配置表
|
|
/// </summary>
|
|
[SugarTable("email_user_account_parser_relation")]
|
|
public class EmailUserAccountParserRelationInfo : BaseTenantModel<long>
|
|
{
|
|
/// <summary>
|
|
/// GID
|
|
/// </summary>
|
|
public string GID { get; set; }
|
|
/// <summary>
|
|
/// 邮箱账户主键
|
|
/// </summary>
|
|
public string EmailAccountId { get; set; }
|
|
/// <summary>
|
|
/// 邮箱
|
|
/// </summary>
|
|
public string EmailAccount { get; set; }
|
|
/// <summary>
|
|
/// 邮件解析器主键
|
|
/// </summary>
|
|
public string EmailParserId { get; set; }
|
|
/// <summary>
|
|
/// 转发给操作
|
|
/// </summary>
|
|
public bool TransmitToOp { get; set; }
|
|
|
|
}
|
|
}
|