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.
36 lines
938 B
C#
36 lines
938 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_excute_code_inject_config")]
|
|
[Description("邮件执行代码注入配置表")]
|
|
public class EmailExcuteCodeInjectConfigInfo: EmailParserSystemDbEntity
|
|
{
|
|
/// <summary>
|
|
/// 注入代码
|
|
/// </summary>
|
|
public string INJECT_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 注入名称
|
|
/// </summary>
|
|
public string INJECT_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 注入代码完整路径
|
|
/// </summary>
|
|
public string INJECT_FULLNAME { get; set; }
|
|
}
|
|
}
|