12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace YLShipBuildLandMap.Entity
- {
- public partial class SysNoticeHistory
- {
- public Guid NoticeHistoryId { get; set; }
- public Guid? SourceId { get; set; }
- public int? NoticeTypeId { get; set; }
- public DateTime? SentTime { get; set; }
- public Guid? DepartmentId { get; set; }
- public Guid? UserId { get; set; }
- public string Title { get; set; }
- public string Content { get; set; }
- public string Url { get; set; }
- public string ErrorMessage { get; set; }
- public int? RecordStatus { get; set; }
- public DateTime? CreateTime { get; set; }
- public Guid? CreateUserId { get; set; }
- public Guid? ModifyUserId { get; set; }
- public DateTime? ModifyTime { get; set; }
- public virtual SysUser User { get; set; }
- }
- }
|