//-------------------------------------------------------------------- // 此代码由T4模板自动生成 byzhouhang 20210918 // 生成时间 2022-04-25 09:46:09 // 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。 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; } } }