using Model.ModelDto; using Model.ModelVm; using System; using System.Collections.Generic; using System.Text; using Model.ModelDto.BllAsnDto; namespace WMS.IBLL.IBllAsnServer { public interface IBllBoxInfoServer { List GetBoxInfoList(BoxInfoVm model, out int count); string ImportBoxInfo(BoxInfoVms models); string AddBoxInfo(BoxInfoVm model); string DelBoxInfo(BoxInfoVm model); /// /// 根据箱码获取未组盘的箱码信息 /// /// /// /// /// List GetBoxInfoList(string boxCode,string isContinue, string boxCode2); /// /// 获取标签信息(生成标签) /// /// 入库单明细ID /// 是否重新生成自有批次 0:否 1:是 /// 到货数量 /// 物料名称 /// 规格/型号 /// 包装规格 /// 物料编码 /// 供应商批次 /// 生产日期 /// 有效期至 /// 储存期至 /// 操作人 /// List AddLabelBoxReturn(int imId, string isReset, decimal arriveQty, string skuName, string standard, string packStandard, string skuNo, string supplierLot, string productionTime, string expirationTime, string storeTime, int userId); } }