using Model.ModelDto; using Model.ModelVm; using System; using System.Collections.Generic; using System.Text; 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); } }