DataServices 现场调试OK

This commit is contained in:
2025-11-26 16:46:48 +08:00
parent 979afae645
commit 010272aa0b
31 changed files with 1866 additions and 267 deletions

View 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();
}
}
}