增加CAN 调度表配置

This commit is contained in:
2025-09-13 15:43:05 +08:00
parent 0c43c2103a
commit 88a6986f02
19 changed files with 1559 additions and 7 deletions

View File

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