username@email.com
2024-07-08 c6c6761506785691ef44e7e232c45e1b4b16f7fa
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
using System;
using System.Collections.Generic;
using System.Text;
 
namespace DTO
{
    #region 专家管理
    public partial class ExpertDTO
    {
        public string Id { get; set; }
        public string Name { get; set; }
        public string Sex { get; set; }
        public string InfoSource { get; set; }
        public string IdCard { get; set; }
        public string Province { get; set; }
        public string AreaId { get; set; }
        public string City { get; set; }
 
        public string AreaName { get; set; }
        public string Address { get; set; }
        public string Postal { get; set; }
        public string ExpertType { get; set; }
        public string Level { get; set; }
        public string LevelName { get; set; }
        public string Phone1 { get; set; }
        public string Phone2 { get; set; }
        public string Qq { get; set; }
        public string Wechat { get; set; }
        public string ReviewItem { get; set; }
 
 
        public string ReviewItemSelect { get; set; }
        public string CertiNumber { get; set; }
        public string CertiFont { get; set; }
        public string CertiBack { get; set; }
        public string TitileCerti { get; set; }
        public string Remark { get; set; }
        public string Sort { get; set; }
        public string RecStatus { get; set; }
        public string Creater { get; set; }
        public string CreaterName { get; set; }
        public DateTime Createtime { get; set; }
 
        public string CreatetimeName { get; set; }
        public string Modifier { get; set; }
        public DateTime Modifytime { get; set; }
        public string TitileCerti1 { get; set; }
        public string ShenheStatus { get; set; }
        public string TitileCerti2 { get; set; }
        public string TitileCerti3 { get; set; }
        public string TitileCerti4 { get; set; }
        public string TitileCerti5 { get; set; }
        public string TitileCerti6 { get; set; }
        public string TitileCerti7 { get; set; }
        public string TitileCerti8 { get; set; }
        public string TitileCerti9 { get; set; }
        public string TitileCerti10 { get; set; }
        public string YearJiou { get; set; }
        public string YearJiouName { get; set; }
    }
 
    public partial class ExpertDTOSearch : SearchEntity
    {
        public string Province { get; set; }
        public string City { get; set; }
        public string Createtime { get; set; }
        public string AreaId { get; set; }
        public string Name { get; set; }
        public string ExpertType { get; set; }
        public string ReviewItem { get; set; }
        public string Level { get; set; }
        public string CertiNumber { get; set; }
        public string Phone1 { get; set; }
        public int JoinCount { get; set; }
 
        public string ShenheStatus { get; set; }
 
        public string Creater { get; set; }
        public string YearJiou { get; set; }
    }
    #endregion
 
    #region 专家推广
    public partial class ExpertPromoteDTO
    {
        public string Id { get; set; }
        public string ExpertId { get; set; }
        public string SN { get; set; }
        public string Content { get; set; }
 
        public DateTime PromoteDate { get; set; }
 
        public string Sort { 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 partial class ExpertPromoteDTOSearch : SearchEntity
    {
        public string Createtime { get; set; }
        public string ExpertId { get; set; }
        public string Creater { get; set; }
 
    }
    #endregion
 
    #region 专家派工
 
    public partial class ExpertOrderDipatchDTO
    {
        public string Id { get; set; }
 
        public string OrderId { get; set; }
        public string OrderNo { get; set; }
        public string ExpertId { get; set; }
        public string ExpertName { get; set; }     
        public DateTime XdTime { get; set; }
        public string XdTimeName { get; set; }
        public string OrderType { get; set; }
        public string OrderTypeName { get; set; }
 
        public string Khdw { get; set; }
        public string KhdwName { get; set; }
        public string Shr { get; set; }
        public string ShrAddress { get; set; }
        public string ShrTel { get; set; } 
 
        public decimal? Money { get; set; }
        public string RecStatus { get; set; }
        public string Creater { get; set; }
        public DateTime? Createtime { get; set; }
        public string CreatetimeName { get; set; }
        public string Modifier { get; set; }
        public DateTime? Modifytime { get; set; }
        public string sort { get; set; }
    }
 
    public partial class ExpertOrderDipatchDTOSearch : SearchEntity
    {
        public string Createtime { get; set; }
        public string ExpertId { get; set; }
        public string Creater { get; set; }
 
        public string Ywjl { get; set; }
        public string Khlx { get; set; }
        public string OrderType { get; set; }
        public string OrderNo { get; set; }
        public string XdTime { get; set; }
        public string KhdwName { get; set; }
        public string isDispatch { get; set; }
 
        public string PdTime { get; set; }
 
        public string Sort { get; set; }
 
    }
    #endregion
}