2024-12-03 09:25:16 +08:00
|
|
|
|
using DOAN.Model.System;
|
2024-11-28 13:36:05 +08:00
|
|
|
|
|
2024-12-03 09:25:16 +08:00
|
|
|
|
namespace DOAN.Model.Models
|
2024-11-28 13:36:05 +08:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 邮件发送模板
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarTable("emailTpl")]
|
|
|
|
|
|
[Tenant("0")]
|
|
|
|
|
|
public class EmailTpl : SysBase
|
|
|
|
|
|
{
|
|
|
|
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "模板内容", ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
|
|
|
|
|
public string Content { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|