CAN FD 调度表初步更改

This commit is contained in:
2026-01-14 17:55:45 +08:00
parent 427cdc5305
commit 4d16b474c6
19 changed files with 2130 additions and 186 deletions

View File

@@ -0,0 +1,14 @@
using AutoMapper;
using CapMachine.Model.CANLIN;
using CapMachine.Wpf.Dtos;
namespace CapMachine.Wpf.MapperProfile
{
public class CANFdScheduleConfigProfile : Profile
{
public CANFdScheduleConfigProfile()
{
CreateMap<CANFdScheduleConfig, CANFdScheduleConfigDto>().ReverseMap();
}
}
}