增加了CAN调度表发送,但是没有测试成功

This commit is contained in:
2025-08-10 23:49:17 +08:00
parent 7a5793c43a
commit 159187a475
21 changed files with 1618 additions and 29 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();
}
}
}