增加CAN 调度表的配置

This commit is contained in:
2025-09-08 23:04:48 +08:00
parent 6555741b14
commit 2c0575eea7
12 changed files with 1086 additions and 27 deletions

View File

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