using AutoMapper; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using UIStandardWebApi.Entity; using UIStandardWebApi.EntityDto; using UIStandardWebApi.IService; namespace UIStandardWebApi.WebCore.AutoMapExtend { /// /// Dto映射配置 /// public class AutoMapperConfigs : Profile { /// /// 配置映射 /// public AutoMapperConfigs() { CreateMap(); CreateMap, PagingData>().ReverseMap(); } } }