using System.Globalization; using Seyounth.Hyosung.Data.Models; using Seyounth.Hyosung.Data.Services.Hyosung.Entities; namespace Seyounth.Hyosung.Data.Services; public interface ITrayService { /// /// 生成一个新的托盘 /// /// 品类ID /// Task GeneraNewTray(int varietyId); /// /// 通过Code查找ID /// /// /// Task GetIdByCode(string code); /// /// /// /// /// Task GetByCode(string code); Task GetIsPacking(); Task StorageAsync(string trayCode); Task PrintTrayAsync(string trayCode, MST_ITEM_2240_V itemInfo,Variety variety); Task UpdateHeightAsync(string trayCode, int height); Task ExportedAsync(string trayCode); Task> GetNoExportCodesAsync(); Task SetControlNoAsync(string trayCode, int controlNo); Task> GetTodayTrayAsync(); }