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.
24 lines
603 B
C#
24 lines
603 B
C#
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.Op.Entity.TaskInteraction
|
|
{
|
|
/// <summary>
|
|
/// 任务邮件附件配置
|
|
/// </summary>
|
|
[SugarTable("business_task_mail_attachment", "任务邮件附件配置")]
|
|
public class BusinessTaskMailAttachment
|
|
{
|
|
/// <summary>
|
|
/// 任务邮件配置ID
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public long TaskMailId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 打印模板ID
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public long TemplateId { get; set; }
|
|
}
|
|
}
|