using System.Collections;
using System.Collections.Generic;
using System.Data;
using Model;
namespace BLL
{
public interface IDALGoodsPos
{
bool IsExist(string Addre, string value);
bool IsExist(Hashtable ht);
bool Add(GoodsPos model, string loginUser);
bool Update(GoodsPos model);
bool Delete(string MatNo);
bool AnditMat(string[] MatNo,string AuditModel);
bool BatchDelete(string[] MatNo);
GoodsPos GetModel(string MatNo);
bool UpdateLock(string[] Addre, string ALock);
bool UpdateProperty(string[] Addre, string Property);
///
/// 查询库位
///
///
///
/// 库详细信息
IList GetList(AjaxGoodsPosList Json, ref PageInfo pageInfo);
DataTable GetDataTable(string[] strWhere);
DataTable GetDataTable(int PageSize, int PageIndex, string strWhere);
IList GetPaiList(string StorageNO);
IList GetLieList(string StorageNO);
IList GetCengList(string StorageNO);
IList GetAreaList();
IList GetPropertyList();
IList GetStatuList();
IList GetALockList();
}
}