From c59f691492dc184f0619f937f01b1de289641c8d Mon Sep 17 00:00:00 2001 From: xiaolipro <2357729423@qq.com> Date: Wed, 21 Jan 2026 09:28:19 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9Ainterface=20form=20parameters=20map?= =?UTF-8?q?=20err?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AutoMapper/InterfaceProfile.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/InterfaceForward.Application/AutoMapper/InterfaceProfile.cs b/src/InterfaceForward.Application/AutoMapper/InterfaceProfile.cs index d5bbe92..ef76fb0 100644 --- a/src/InterfaceForward.Application/AutoMapper/InterfaceProfile.cs +++ b/src/InterfaceForward.Application/AutoMapper/InterfaceProfile.cs @@ -1,8 +1,10 @@ using AutoMapper; using InterfaceForward.Application.Contracts.Dtos.Interface; using InterfaceForward.Application.Contracts.Dtos.ServiceProvider; +using InterfaceForward.Domain.Shared.Dtos; using InterfaceForward.Repositories.Interface.Entitys; using InterfaceForward.Repositories.Interface.ValueObjects; +using InterfaceForward.Repositories.Parameter.Entities; namespace InterfaceForward.Application.AutoMapper; @@ -17,5 +19,7 @@ public class InterfaceProfile : Profile CreateMap(MemberList.None); CreateMap(MemberList.None); + + CreateMap(MemberList.None); } } \ No newline at end of file