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
880 B
C#
35 lines
880 B
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.Text;
|
|
using System.Threading.Tasks;
|
|
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.EmailParse.Entity
|
|
{
|
|
/// <summary>
|
|
/// 邮件解析处理机配置表
|
|
/// </summary>
|
|
[SugarTable("email_processor_config")]
|
|
public class EmailProcessorConfigInfo : BaseModel<long>
|
|
{
|
|
/// <summary>
|
|
/// GID
|
|
/// </summary>
|
|
public string GID { get; set; }
|
|
/// <summary>
|
|
/// 处理机代码
|
|
/// </summary>
|
|
public string ProcCode { get; set; }
|
|
/// <summary>
|
|
/// 处理机名称
|
|
/// </summary>
|
|
public string ProcName { get; set; }
|
|
|
|
}
|
|
}
|