From c60a7d7b29faba465969555e2a9c69acb8510f90 Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期五, 25 二月 2022 09:11:41 +0800 Subject: [PATCH] 如果客户资料中有“*”的内容,生产文书时自动填上,质疑单位默认填写客户名称,可修改 --- zhengcaioa/CommonToolsCore/AutoMapperConfigs.cs | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 54 insertions(+), 0 deletions(-) diff --git a/zhengcaioa/CommonToolsCore/AutoMapperConfigs.cs b/zhengcaioa/CommonToolsCore/AutoMapperConfigs.cs index df0467e..66cc5d7 100644 --- a/zhengcaioa/CommonToolsCore/AutoMapperConfigs.cs +++ b/zhengcaioa/CommonToolsCore/AutoMapperConfigs.cs @@ -261,6 +261,60 @@ CreateMap<AdmAskJiaojieDtl, AdmAskJiaojieDtlDTO>(); CreateMap<AdmAskJiaojieDtlDTO, AdmAskJiaojieDtl>(); + CreateMap<SysBaimingdan, SysBaimingdanDTO>(); + CreateMap<SysBaimingdanDTO, SysBaimingdan>(); + + CreateMap<AdmTongxunlu, AdmTongxunluDTO>(); + CreateMap<AdmTongxunluDTO, AdmTongxunlu>(); + + CreateMap<AdmZhanghaomima, AdmZhanghaomimaDTO>(); + CreateMap<AdmZhanghaomimaDTO, AdmZhanghaomima>(); + + CreateMap<AdmGoodsRecord, AdmGoodsRecordDTO>(); + CreateMap<AdmGoodsRecordDTO, AdmGoodsRecord>(); + + CreateMap<ExpertTestTopic, ExpertTestTopicDTO>(); + CreateMap<ExpertTestTopicDTO, ExpertTestTopic>(); + + CreateMap<ExpertTestTopicanwser, ExpertTestTopicanwserDTO>(); + CreateMap<ExpertTestTopicanwserDTO, ExpertTestTopicanwser>(); + + CreateMap<ExpertTestTopicjiexi, ExpertTestTopicjiexiDTO>(); + CreateMap<ExpertTestTopicjiexiDTO, ExpertTestTopicjiexi>(); + + CreateMap<ExpertTestResult, ExpertTestResultDTO>(); + CreateMap<ExpertTestResultDTO, ExpertTestResult>(); + + 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>(); + } } } -- Gitblit v1.9.1