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.
30 lines
808 B
C#
30 lines
808 B
C#
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.Op.Entity.TaskInteraction
|
|
{
|
|
/// <summary>
|
|
/// 任务邮件附件配置
|
|
/// </summary>
|
|
[SugarTable("business_task_attachment", "任务邮件附件配置")]
|
|
public class BusinessTaskAttachment
|
|
{
|
|
/// <summary>
|
|
/// 任务邮件配置ID
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public long TaskMailId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 打印模板ID
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public long? TemplateId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 附件文件名
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "附件文件名", Length = 50, IsNullable = true)]
|
|
public string? FileName { get; set; }
|
|
}
|
|
}
|