namespace Ds.Modules.DsEntity.Template { /// /// 客户邮件模板表 /// public class Ds_Template_CustomerEmail : BaseEntityTenant { /// /// 客户名称 /// public long CustomerId { get; set; } /// /// 模板名称 /// public string TemplateName { get; set; } /// /// 单据类型 /// public int DocumenType { get; set; } /// /// 主题名称 /// public string TopicName { get; set; } /// /// 附件名称 /// public string AttachmentName { get; set; } /// /// 附件地址 /// public string AttachmentUrl { get; set; } /// /// 附件内容 /// public string AttachmentContent { get; set; } /// /// 是否是默认 /// public bool IsDefault { get; set; } = false; } }