username@email.com
2023-02-28 67a0042c5f29e4bb0e0b82f6190f2bc51480b45c
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
using System;
using System.Collections.Generic;
using System.Text;
/// <summary>
/// 日常管理模块
/// </summary>
namespace DTO
{
    #region 接电话管理
    /// <summary>
    /// 来电管理
    /// </summary>
    public partial class AdmHoldPhoneDTO
    {
        public string Id { get; set; }
        public DateTime InTime { get; set; }
        public string OrderId { get; set; }
        public string Phone { get; set; }
        public string LineType { get; set; }
        public string Context { get; set; }
        public string UserId { get; set; }
        public string Intention { get; set; }
        public string Handling { 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 string Message { get; set; }
    }
 
    public partial class AdmHoldPhoneDTOSearch:SearchEntity
    {
        public string Createtime { get; set; }
        public string LineType { get; set; }
        public string Phone{ get; set; }
        public string OrderName { set; get; }
        public string Intention { get; set; }
        public string Context { get; set; }
 
        public string UserId { get; set; }
 
        public string Creater { get; set; }
    }
    #endregion
 
    #region 工作提醒
    public partial class AdmMemoBookDTO
    {
        public string Id { get; set; }
        public string Rtype { get; set; }
        public string RtypeName { get; set; }
        public string ToUserId { get; set; }
       // public string toUserName { get; set; }
        public DateTime? Time { get; set; }
        public string TimeName { get; set; }
        public string Context { get; set; }
        public int HaveRead { get; set; }
        public string HaveReadName { get; set; }
        public string RecStatus { get; set; }
        public string Creater { get; set; }
      //  public string CreaterName { get; set; }
        public DateTime Createtime { get; set; }
        public string Modifier { get; set; }
        public DateTime Modifytime { get; set; }
 
        public string FeedBack { get; set; }
 
        public string WorkDept { get; set; }
        public string KaoHe { get; set; }
        public string KaoHeName { get; set; }
        public string ZhuiZe { get; set; }
        public DateTime? WanchengTime { get; set; }
        public string WanchengTimeName { get; set; }
        public string BanLi { get; set; }
        public string ShenSu { get; set; }
        public DateTime? ShenSuTime { get; set; }
    }
 
    public partial class AdmMemoBookDTOSearch: SearchEntity
    {
 
        public string Createtime { get; set; }
        public string WorkDept { get; set; }
        public string ToUserId { get; set; }
        public string Rtype { get; set; }
 
        public string HaveRead { get; set; }
 
        public int unread { get; set; }
 
        public string Creater { get; set; }
 
        public string KaoHe { get; set; }
    }
    #endregion
}