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(long code); /// /// /// /// /// Task GetByCode(long code); /// /// 生成控制号 /// /// /// Task StorageAsync(long trayCode); /// /// 打印托盘 /// /// /// /// /// /// Task PrintTrayAsync(long trayCode, int stackHeight, int controlNo, MST_ITEM_2240_V itemInfo); }