CAN FD增加

This commit is contained in:
2025-07-11 23:47:23 +08:00
parent 735c42f909
commit 169ea7b93d
20 changed files with 4250 additions and 513 deletions

View File

@@ -0,0 +1,19 @@
using AutoMapper;
using CapMachine.Model.CANLIN;
using CapMachine.Wpf.Dtos;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Wpf.MapperProfile
{
public class CANFdConfigExdProfile : Profile
{
public CANFdConfigExdProfile()
{
CreateMap<CANFdConfigExd, CANFdConfigExdDto>().ReverseMap();
}
}
}