using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Model; namespace BLL { public interface IDALPalletBind { IList GetList(PalBindList ajaxPbl, ref PageInfo page); bool Add(PalBind model, List lst); bool GetErpinByMatNo(PalBind models, ref IList lstPB); bool GetPalletBind(string PalletNo, ref IListlst); bool GetPalletBind(PalBind palBind, ref IList lst); bool GetRemainBindCount(string OrdNo, string MatNo, ref int OrdCount, ref int BindCount, ref int RemainCount, string PalletNo); bool GetOrderMatByMatNoAndOrd(string OrdNo, string MatNo, ref ErpInDetail eid); bool IsPalletUsing(string PalletNo); bool UpdateErpinStatus(string OrderNo, string Statu); bool UpdateErpinByPalletNo(IList lst); bool GetPalletBindStatus(string PalletNo, string status); string DelPalBind(string userCode, string palno, string ordNo,string LocationCode); void DelPalBindDetail(string userCode, string guid, string ordNo); } }