using IRaCIS.Core.Domain.Share; namespace IRaCIS.Core.Domain.Models; [Comment("邮件收件人")] [Table("EmailRecipientLog")] public class EmailRecipientLog : BaseFullAuditEntity { [JsonIgnore] [ForeignKey("EmailLogId")] public EmailLog EmailLog { get; set; } /// /// 邮件Id /// public Guid EmailLogId { get; set; } /// /// 收件人姓名 /// public string RecipientName { get; set; } /// /// 收件人地址 /// public string RecipientAddress { get; set; } /// /// 收件人类型 /// public RecipientType RecipientTypeEnum { get; set; } /// /// 排序 /// public int Sort { get; set; } }