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.
41 lines
1018 B
C#
41 lines
1018 B
C#
using Furion.DatabaseAccessor;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 邮件处理进行步骤表
|
|
/// </summary>
|
|
[SugarTable("email_processor_config_step")]
|
|
[Description("邮件处理进行步骤表")]
|
|
public class EmailProcessorConfigStepInfo : EmailParserSystemDbEntity
|
|
{
|
|
/// <summary>
|
|
/// 处理机主键
|
|
/// </summary>
|
|
public string PROCESSOR_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 步骤序号
|
|
/// </summary>
|
|
public int STEP_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 步骤描述
|
|
/// </summary>
|
|
public string STEP_NOTE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 注入代码ID
|
|
/// </summary>
|
|
public string INJECT_ID { get; set; }
|
|
}
|
|
}
|