LIN 调度表 V1

This commit is contained in:
2025-08-14 11:26:01 +08:00
parent d6f6022482
commit 2312e6f611
15 changed files with 911 additions and 10 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();
}
}
}