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.
BookingHeChuan/Myshipping.Application/Entity/EmailParserSystem/EmailProcessorConfigInfo.cs

31 lines
784 B
C#

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_processor_config")]
[Description("邮件解析处理机配置表")]
public class EmailProcessorConfigInfo : EmailParserSystemDbEntity
{
/// <summary>
/// 处理机代码
/// </summary>
public string PROC_CODE { get; set; }
/// <summary>
/// 处理机名称
/// </summary>
public string PROC_NAME { get; set; }
}
}