username@email.com
2021-06-04 10b700dad2a510b83a5066aa5002dea8f4eb0e38
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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; }
    }
}