erp-platform/api/modules/Erp.MailQueue/Domain/Entities/BackgroundWorker_MailQueue.cs

24 lines
849 B
C#
Raw Normal View History

2025-10-03 11:35:52 +00:00
using Volo.Abp.Domain.Entities.Auditing;
2025-05-06 06:45:49 +00:00
2025-11-11 19:49:52 +00:00
namespace Erp.MailQueue.Domain.Entities;
2025-05-06 06:45:49 +00:00
public class BackgroundWorker_MailQueue : FullAuditedEntity<Guid>
{
public Guid TemplateId { get; set; }
public string From { get; set; }
public string To { get; set; }
2025-10-03 11:35:52 +00:00
public string MailParameter { get; set; }
public string TableName { get; set; }
2025-05-06 06:45:49 +00:00
public string TableParameter { get; set; }
public string Attachment { get; set; }
public string AttachmentParameter { get; set; }
2025-10-03 11:35:52 +00:00
public bool SendStatus { get; set; }
public DateTime? SendTime { get; set; }
public string AwsMessageId { get; set; }
public string RelatedRecordId { get; set; }
2025-05-06 06:45:49 +00:00
2025-10-03 11:35:52 +00:00
public virtual ICollection<BackgroundWorker_MailQueueEvents> Events { get; set; }
public virtual BackgroundWorker_MailQueueTableFormat TableFormat { get; set; }
2025-05-06 06:45:49 +00:00
}
2025-11-11 19:49:52 +00:00