From 6e2b929cf381e2320ba6e7dec56c0371124d2b51 Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期六, 27 八月 2022 15:03:00 +0800 Subject: [PATCH] 提交 --- zhengcaioa/CommonToolsCore/AutoMapperConfigs.cs | 41 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 41 insertions(+), 0 deletions(-) diff --git a/zhengcaioa/CommonToolsCore/AutoMapperConfigs.cs b/zhengcaioa/CommonToolsCore/AutoMapperConfigs.cs index 1b98bc7..d317161 100644 --- a/zhengcaioa/CommonToolsCore/AutoMapperConfigs.cs +++ b/zhengcaioa/CommonToolsCore/AutoMapperConfigs.cs @@ -1,6 +1,7 @@ 锘縰sing AutoMapper; using DTO; using DTO.Models; +using DTO.WebCrawler; using System; using System.Collections.Generic; using System.Text; @@ -287,6 +288,46 @@ CreateMap<ExpertTestTopicpeizhi, ExpertTestTopicpeizhiDTO>(); CreateMap<ExpertTestTopicpeizhiDTO, ExpertTestTopicpeizhi>(); + + CreateMap<TComplaintRespondent, TComplaintRespondentDTO>(); + CreateMap<TComplaintRespondentDTO, TComplaintRespondent>(); + + CreateMap<TComplaintletter, TComplaintletterDTO>(); + CreateMap<TComplaintletterDTO, TComplaintletter>(); + + CreateMap<TComplaintItem, TComplaintItemDTO>(); + CreateMap<TComplaintItemDTO, TComplaintItem>(); + + CreateMap<TChallengeletter, TChallengeletterDTO>(); + CreateMap<TChallengeletterDTO, TChallengeletter>(); + + CreateMap<TChallengeItem, TChallengeItemDTO>(); + CreateMap<TChallengeItemDTO, TChallengeItem>(); + + CreateMap<HrShebao, HrShebaoDTO>(); + CreateMap<HrShebaoDTO, HrShebao>(); + + CreateMap<TComplaintGongyingshang, TComplaintGongyingshangDTO>(); + CreateMap<TComplaintGongyingshangDTO, TComplaintGongyingshang>(); + + CreateMap<TComplaintShouquandaibiao, TComplaintShouquandaibiaoDTO>(); + CreateMap<TComplaintShouquandaibiaoDTO, TComplaintShouquandaibiao>(); + + CreateMap<FiCustomerrecievemoney, FiCustomerrecievemoneyDTO>(); + CreateMap<FiCustomerrecievemoneyDTO, FiCustomerrecievemoney>(); + + CreateMap<TProjectDictionary, TProjectDictionaryDTO>(); + CreateMap<TProjectDictionaryDTO, TProjectDictionary>(); + + CreateMap<ZhengfuProject, ZhengfuProjectDTO>(); + CreateMap<ZhengfuProjectDTO, ZhengfuProject>(); + + CreateMap<Zxdsfxl, ZxdsfxlDTO>(); + CreateMap<ZxdsfxlDTO, Zxdsfxl>(); + + CreateMap<TChallengeRequestInfo, TChallengeRequestInfoDTO>(); + CreateMap<TChallengeRequestInfoDTO, TChallengeRequestInfo>(); + } } } -- Gitblit v1.9.1