using IRaCIS.Core.Domain.Share.Management;
namespace IRaCIS.Core.Domain.Models
{
///
///SystemNotice
///
[Table("SystemNotice")]
public class SystemNotice : BaseFullAuditEntity
{
#region 导航属性
[JsonIgnore]
public List NoticeUserTypeList { get; set; } = new List();
[JsonIgnore]
public List NoticeUserReadList { get; set; } = new List();
#endregion
public string NoticeContent { get; set; } = string.Empty;
public SystemNotice_NoticeTypeEnum NoticeTypeEnum { get; set; }
public SystemNotice_NoticeLevelEnum NoticeLevelEnum { get; set; }
public SystemNotice_ApplicableProjectEnum ApplicableProjectEnum { get; set; }
public SystemNotice_NoticeModeEnum NoticeModeEnum { get; set; }
public SystemNotice_NoticeStateEnum NoticeStateEnum { get; set; }
public DateTime? StartDate { get; set; }
public DateTime? EndDate { get; set; }
public string FileName { get; set; } = string.Empty;
public string Path { get; set; } = string.Empty;
public Guid? PublishedUserId { get; set; }
public User PublishedUser { get; set; }
public DateTime? PublishedTime { get; set; }
}
}