using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using AutoMapper; using Common.DJYModel; namespace djy.Service.DjyService {/// /// automapper自动映射配置 /// public class AutoMapperConfig:Profile { public AutoMapperConfig() { CreateMap().ReverseMap(); CreateMap().ReverseMap(); } } }