24 lines
853 B
C#
24 lines
853 B
C#
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|||
|
|
|
|||
|
|
namespace Sozsoft.MailQueue.Domain.Entities;
|
|||
|
|
|
|||
|
|
public class BackgroundWorker_MailQueue : FullAuditedEntity<Guid>
|
|||
|
|
{
|
|||
|
|
public Guid TemplateId { get; set; }
|
|||
|
|
public string From { get; set; }
|
|||
|
|
public string To { get; set; }
|
|||
|
|
public string MailParameter { get; set; }
|
|||
|
|
public string TableName { get; set; }
|
|||
|
|
public string TableParameter { get; set; }
|
|||
|
|
public string Attachment { get; set; }
|
|||
|
|
public string AttachmentParameter { get; set; }
|
|||
|
|
public bool SendStatus { get; set; }
|
|||
|
|
public DateTime? SendTime { get; set; }
|
|||
|
|
public string AwsMessageId { get; set; }
|
|||
|
|
public string RelatedRecordId { get; set; }
|
|||
|
|
|
|||
|
|
public virtual ICollection<BackgroundWorker_MailQueueEvents> Events { get; set; }
|
|||
|
|
public virtual BackgroundWorker_MailQueueTableFormat TableFormat { get; set; }
|
|||
|
|
}
|
|||
|
|
|