username@email.com
2021-09-28 ef80d35cdbabf2ac5fd83f84714b4254e6444fef
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
using AutoMapper;
using DTO;
using DTO.Models;
using System;
using System.Collections.Generic;
using System.Text;
using zhengcaioa.Models;
 
namespace CommonToolsCore
{
   public class AutoMapperConfigs:Profile
    {
        public AutoMapperConfigs()
        {
           
            CreateMap<Liaotian, LiaotianDTO>();
            CreateMap<LiaotianDTO, Liaotian>();
            
            CreateMap<Project, ProjectDTO>();
            CreateMap<ProjectDTO, Project>();
 
            CreateMap<PltUser, PltUserDTO>();
            CreateMap<PltUserDTO, PltUser>();
 
            CreateMap<PltRole, PltRoleDTO>();
            CreateMap<PltRoleDTO, PltRole>();
 
            CreateMap<PltPage, PltPageDTO>();
            CreateMap<PltPageDTO, PltPage>();
 
            CreateMap<PltUserRole, PltUserRoleDTO>();
            CreateMap<PltUserRoleDTO, PltUserRole>();
 
            CreateMap<PltAuth, PltAuthDTO>();
            CreateMap<PltAuthDTO, PltAuth>();
 
            CreateMap<HrPosition, HrPositionDTO>();
            CreateMap<HrPositionDTO, HrPosition>();
 
            CreateMap<HrDept, HrDeptDTO>();
            CreateMap<HrDeptDTO, HrDept>();
 
            CreateMap<CooperatecustomCustomer, CooperatecustomCustomerDTO>();
            CreateMap<CooperatecustomCustomerDTO, CooperatecustomCustomer>();
 
            CreateMap<IntentionCustomer, IntentionCustomerDTO>();
            CreateMap<IntentionCustomerDTO, IntentionCustomer>();
 
            CreateMap<CooperVisit, CooperVisitDTO>();
            CreateMap<CooperVisitDTO, CooperVisit>();
 
            CreateMap<IntentionVisit, IntentionVisitDTO>();
            CreateMap<IntentionVisitDTO, IntentionVisit>();
 
 
            CreateMap<IntentionOrder, IntentionOrderDTO>();
            CreateMap<IntentionOrderDTO, IntentionOrder>();
 
 
            CreateMap<IntentionCustomerDTO, CooperatecustomCustomerDTO>();
            CreateMap<CooperatecustomCustomerDTO, IntentionCustomerDTO>();
 
            CreateMap<CooperOrder, CooperOrderDTO>();
            CreateMap<CooperOrderDTO, CooperOrder>();
 
            CreateMap<Systemsetting, SystemsettingDTO>();
            CreateMap<SystemsettingDTO, Systemsetting>();
 
            CreateMap<GroupTopic, GroupTopicDTO>();
            CreateMap<GroupTopicDTO, GroupTopic>();
 
            CreateMap<GroupGrouptype, GroupGrouptypeDTO>();
            CreateMap<GroupGrouptypeDTO, GroupGrouptype>();
 
            CreateMap<GroupTuiguang, GroupTuiguangDTO>();
            CreateMap<GroupTuiguangDTO, GroupTuiguang>();
 
            CreateMap<GroupGroup, GroupGroupDTO>();
            CreateMap<GroupGroupDTO, GroupGroup>();
 
            CreateMap<Expert, ExpertDTO>();
            CreateMap<ExpertDTO, Expert>();
 
            CreateMap<ExpertPromote, ExpertPromoteDTO>();
            CreateMap<ExpertPromoteDTO, ExpertPromote>();
 
            CreateMap<ExpertOrderDispatch, ExpertOrderDipatchDTO>();
            CreateMap<ExpertOrderDipatchDTO, ExpertOrderDispatch>();
 
 
            CreateMap<FiAccount, FiAccountDTO>();
            CreateMap<FiAccountDTO, FiAccount>();
 
            CreateMap<FiSubject, FiSubjectDTO>();
            CreateMap<FiSubjectDTO, FiSubject>();
 
            CreateMap<FiOrderrecievemoney, FiOrderrecievemoneyDTO>();
            CreateMap<FiOrderrecievemoneyDTO, FiOrderrecievemoney>();
 
            CreateMap<FiPiecerate, FiPiecerateDTO>();
            CreateMap<FiPiecerateDTO, FiPiecerate>();
 
 
            CreateMap<AdmDocDoc, AdmDocDocDTO>();
            CreateMap<AdmDocDocDTO, AdmDocDoc>();
 
 
            CreateMap<PltRoleDept, PltRoleDeptDTO>();
            CreateMap<PltRoleDeptDTO, PltRoleDept>();
 
            CreateMap<Area, AreaDTO>();
            CreateMap<AreaDTO, Area>();
 
            CreateMap<AdmDocBase, AdmDocBaseDTO>();
            CreateMap<AdmDocBaseDTO, AdmDocBase>();
 
            CreateMap<AdmGoodsClassify, AdmGoodsClassifyDTO>();
            CreateMap<AdmGoodsClassifyDTO, AdmGoodsClassify>();
 
            CreateMap<AdmGoodsManage, AdmGoodsManageDTO>();
            CreateMap<AdmGoodsManageDTO, AdmGoodsManage>();
 
            CreateMap<AdmPieceCheck, AdmPieceCheckDTO>();
            CreateMap<AdmPieceCheckDTO, AdmPieceCheck>();
            
            CreateMap<AdmAskLeave, AdmAskLeaveDTO>();
            CreateMap<AdmAskLeaveDTO, AdmAskLeave>();
 
            CreateMap<AdmAskLeaveOff, AdmAskLeaveOffDTO>();
            CreateMap<AdmAskLeaveOffDTO, AdmAskLeaveOff>();
 
 
            CreateMap<AdmSignIn, AdmSignInDTO>();
            CreateMap<AdmSignInDTO, AdmSignIn>();
 
            CreateMap<AdmHoldPhone, AdmHoldPhoneDTO>();
            CreateMap<AdmHoldPhoneDTO, AdmHoldPhone>();
 
            CreateMap<AdmMemoBook, AdmMemoBookDTO>();
            CreateMap<AdmMemoBookDTO, AdmMemoBook>();
 
            CreateMap<AdmAttendanceRulesDtl, AdmAttendanceRulesDtlDTO>();
            CreateMap<AdmAttendanceRulesDtlDTO, AdmAttendanceRulesDtl>();
 
            CreateMap<AdmAttendanceRule, AdmAttendanceRuleDTO>();
            CreateMap<AdmAttendanceRuleDTO, AdmAttendanceRule>();
 
 
            CreateMap<AdmBreakPrecedent, AdmBreakPrecedentDTO>();
            CreateMap<AdmBreakPrecedentDTO, AdmBreakPrecedent>();
 
            CreateMap<WfApplytype, WfApplytypeDTO>();
            CreateMap<WfApplytypeDTO, WfApplytype>();
 
            CreateMap<WfHistory, WfHistoryDTO>();
            CreateMap<WfHistoryDTO, WfHistory>();
 
            CreateMap<WfLog, WfLogDTO>();
            CreateMap<WfLogDTO, WfLog>();
 
            CreateMap<WfNeeddeel, WfNeeddeelDTO>();
            CreateMap<WfNeeddeelDTO, WfNeeddeel>();
 
            CreateMap<WfRunProcess, WfRunProcessDTO>();
            CreateMap<WfRunProcessDTO, WfRunProcess>();
 
            CreateMap<WfHistoryDTO, WfNeeddeelDTO>();
            CreateMap<WfNeeddeelDTO, WfHistoryDTO>();
 
            CreateMap<SysAttachment, SysAttachmentDTO>();
            CreateMap<SysAttachmentDTO, SysAttachment>();
 
            CreateMap<PltJiatingchengyuan, PltJiatingchengyuanDTO>();
            CreateMap<PltJiatingchengyuanDTO, PltJiatingchengyuan>();
 
            CreateMap<FiAccountRecord, FiAccountRecordDTO>();
            CreateMap<FiAccountRecordDTO, FiAccountRecord>();
 
            CreateMap<FiService, FiServiceDTO>();
            CreateMap<FiServiceDTO, FiService>();
 
            CreateMap<FiMember, FiMemberDTO>();
            CreateMap<FiMemberDTO, FiMember>();
 
            CreateMap<FiBook, FiBookDTO>();
            CreateMap<FiBookDTO, FiBook>();
 
            CreateMap<AdmAttendanceDtl, AdmAttendanceDtlDTO>();
            CreateMap<AdmAttendanceDtlDTO, AdmAttendanceDtl>();
 
            CreateMap<AdmAttendance, AdmAttendanceDTO>();
            CreateMap<AdmAttendanceDTO, AdmAttendance>();
 
            CreateMap<HrJibengongzi, HrJibengongziDTO>();
            CreateMap<HrJibengongziDTO, HrJibengongzi>();
 
            CreateMap<HrJixiaoticheng, HrJixiaotichengDTO>();
            CreateMap<HrJixiaotichengDTO, HrJixiaoticheng>();
 
            CreateMap<HrSalary, HrSalaryDTO>();
            CreateMap<HrSalaryDTO, HrSalary>();
 
            CreateMap<CusFangwenjilu, CusFangwenjiluDTO>();
            CreateMap<CusFangwenjiluDTO, CusFangwenjilu>();
 
            CreateMap<LZhuanjiahuidum, LZhuanjiahuidumDTO>();
            CreateMap<LZhuanjiahuidumDTO, LZhuanjiahuidum>();
 
            CreateMap<OrderBanci, OrderBanciDTO>();
            CreateMap<OrderBanciDTO, OrderBanci>();
 
            CreateMap<OrderBanciDtl, OrderBanciDtlDTO>();
            CreateMap<OrderBanciDtlDTO, OrderBanciDtl>();
 
            CreateMap<OrderBanciOrder, OrderBanciOrderDTO>();
            CreateMap<OrderBanciOrderDTO, OrderBanciOrder>();
 
            CreateMap<LiaotianShoucang, LiaotianShoucangDTO>();
            CreateMap<LiaotianShoucangDTO, LiaotianShoucang>();
 
            CreateMap<IntentionVisitDuanxin, IntentionVisitDuanxinDTO>();
            CreateMap<IntentionVisitDuanxinDTO, IntentionVisitDuanxin>();
 
 
            CreateMap<DtChannelArticleNews, DtChannelArticleNewsDTO>();
            CreateMap<DtChannelArticleNewsDTO, DtChannelArticleNews>();
 
            CreateMap<AdmEvaluate, AdmEvaluateDTO>();
            CreateMap<AdmEvaluateDTO, AdmEvaluate>();
 
            CreateMap<AdmAskcost, AdmAskcostDTO>();
            CreateMap<AdmAskcostDTO, AdmAskcost>();
 
            CreateMap<AdmAskGood, AdmAskGoodDTO>();
            CreateMap<AdmAskGoodDTO, AdmAskGood>();
 
            CreateMap<AdmAskovertime, AdmAskovertimeDTO>();
            CreateMap<AdmAskovertimeDTO, AdmAskovertime>();
 
            CreateMap<AdmAskCar, AdmAskCarDTO>();
            CreateMap<AdmAskCarDTO, AdmAskCar>();
 
            CreateMap<AdmAskMarketingCost, AdmAskMarketingCostDTO>();
            CreateMap<AdmAskMarketingCostDTO, AdmAskMarketingCost>();
 
            CreateMap<AdmAskYouHui, AdmAskYouHuiDTO>();
            CreateMap<AdmAskYouHuiDTO, AdmAskYouHui>();
 
            CreateMap<AdmAskBaiFang, AdmAskBaiFangDTO>();
            CreateMap<AdmAskBaiFangDTO, AdmAskBaiFang>();
 
            CreateMap<AdmCustomerWithdrawal, AdmCustomerWithdrawalDTO>();
            CreateMap<AdmCustomerWithdrawalDTO, AdmCustomerWithdrawal>();
 
            CreateMap<AdmAskCiZhi, AdmAskCiZhiDTO>();
            CreateMap<AdmAskCiZhiDTO, AdmAskCiZhi>();
 
            CreateMap<AdmAskJiaojie, AdmAskJiaojieDTO>();
            CreateMap<AdmAskJiaojieDTO, AdmAskJiaojie>();
 
            CreateMap<AdmAskJiaojieDtl, AdmAskJiaojieDtlDTO>();
            CreateMap<AdmAskJiaojieDtlDTO, AdmAskJiaojieDtl>();
 
            CreateMap<SysBaimingdan, SysBaimingdanDTO>();
            CreateMap<SysBaimingdanDTO, SysBaimingdan>();
 
            CreateMap<AdmTongxunlu, AdmTongxunluDTO>();
            CreateMap<AdmTongxunluDTO, AdmTongxunlu>();
 
            CreateMap<AdmZhanghaomima, AdmZhanghaomimaDTO>();
            CreateMap<AdmZhanghaomimaDTO, AdmZhanghaomima>();
 
 
        }
    }
}