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