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); Task UpdateHeightAsync(string trayCode, int height); Task ExportedAsync(string trayCode); Task> GetNoExportCodesAsync(); Task SetControlNoAsync(string trayCode, int controlNo); }