using WMS_GIRAF_Interface.Data; using WMS_GIRAF_Interface.Entities; using WMS_GIRAF_Interface.Repositories.Interface; namespace WMS_GIRAF_Interface.Repositories.Implement; public class IoControlRepository(MichelinDbContext context, ILogger logger):IIoControlRepository { //获取Io Control 表数据 /// /// 获取io control数据 /// /// /// public IO_CONTROL? GetIoControlTaskByManageId(int manageId) { var ioControlInfo = context.IoControl.FirstOrDefault(x => x.MANAGE_ID == manageId); return ioControlInfo; } }