DataServices 现场调试OK
This commit is contained in:
20
FATrace.WPLApp/MapperProfile/RawProUseProfile.cs
Normal file
20
FATrace.WPLApp/MapperProfile/RawProUseProfile.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using AutoMapper;
|
||||
using FATrace.Model;
|
||||
using FATrace.WPLApp.ModelDto;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FATrace.WPLApp.MapperProfile
|
||||
{
|
||||
public class RawProUseProfile : Profile
|
||||
{
|
||||
public RawProUseProfile()
|
||||
{
|
||||
CreateMap<RawProUse, RawProUserCsvDto>().ReverseMap();
|
||||
CreateMap<RawProUse, RawProUseDto>().ReverseMap();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user