using SqlSugar;
namespace DS.WMS.Core.Op.Entity.TaskInteraction
{
///
/// 任务邮件附件配置
///
[SugarTable("business_task_mail_attachment", "任务邮件附件配置")]
public class BusinessTaskMailAttachment
{
///
/// 任务邮件配置ID
///
[SugarColumn(IsPrimaryKey = true)]
public long TaskMailId { get; set; }
///
/// 打印模板ID
///
[SugarColumn(IsPrimaryKey = true)]
public long TemplateId { get; set; }
}
}