liuying
2024-04-24 674e704f761eb7cd9a1b0ab0f10d36dc4d49e28d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using Mapster;
using Admin.NET.Core;
 
namespace Admin.NET.Application
{
    public class WmsAreaMapper : IRegister
    {
        public void Register(TypeAdapterConfig config)
        {
            config.ForType<AddWmsAreaInput, WmsArea>()
            ;
            config.ForType<UpdateWmsAreaInput, WmsArea>()
            ;
            config.ForType<WmsArea, WmsAreaOutput>()
            ;
        }
    }
}