bklLiudl
2024-07-23 277bbae216debe7e6c04e8cc6ee6e1ba9763e14b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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);
 
        /// <summary>
        /// 查询库位
        /// </summary>
        /// <param name="Json"></param>
        /// <param name="pageInfo"></param>
        /// <returns>库详细信息</returns>
        IList<GoodsPos> GetList(AjaxGoodsPosList Json, ref PageInfo pageInfo);
      
        DataTable GetDataTable(string[] strWhere);
 
        DataTable GetDataTable(int PageSize, int PageIndex, string strWhere);
 
        IList<GoodsPos> GetPaiList(string StorageNO);
        IList<GoodsPos> GetLieList(string StorageNO);
        IList<GoodsPos> GetCengList(string StorageNO);
        IList<GoodsArea> GetAreaList();
        IList<GoodsProperty> GetPropertyList();
        IList<GoodsStatu> GetStatuList();
        IList<GoodsALock> GetALockList();
    }
}