using System; using System.Collections.Generic; #nullable disable namespace zhengcaioa.Models { public partial class AdmMemoBook { public string Id { get; set; } public string Rtype { get; set; } public string ToUserId { get; set; } public DateTime? Time { get; set; } public string Context { get; set; } public string RecStatus { get; set; } public string Creater { get; set; } public DateTime Createtime { get; set; } public string Modifier { get; set; } public DateTime Modifytime { get; set; } public int? HaveRead { get; set; } public string FeedBack { get; set; } public string WorkDept { get; set; } public string KaoHe { get; set; } public string ZhuiZe { get; set; } public DateTime? WanchengTime { get; set; } public string BanLi { get; set; } public string ShenSu { get; set; } public DateTime? ShenSuTime { get; set; } } }