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.
43 lines
1.1 KiB
C#
43 lines
1.1 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.Text;
|
|
using System.Threading.Tasks;
|
|
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.EmailParse.Entity
|
|
{
|
|
/// <summary>
|
|
/// 邮件处理进行步骤表
|
|
/// </summary>
|
|
[SugarTable("email_processor_config_step")]
|
|
public class EmailProcessorConfigStepInfo : BaseModel<long>
|
|
{
|
|
/// <summary>
|
|
/// GID
|
|
/// </summary>
|
|
public string GID { get; set; }
|
|
/// <summary>
|
|
/// 处理机主键
|
|
/// </summary>
|
|
public string ProcessorId { get; set; }
|
|
/// <summary>
|
|
/// 步骤序号
|
|
/// </summary>
|
|
public int? StepId { get; set; }
|
|
/// <summary>
|
|
/// 步骤描述
|
|
/// </summary>
|
|
public string StepNote { get; set; }
|
|
/// <summary>
|
|
/// 注入代码ID
|
|
/// </summary>
|
|
public string InjectId { get; set; }
|
|
|
|
}
|
|
}
|