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
using System.Collections;
using System.Collections.Generic;
using System.Data;
using Model;
namespace BLL
{
    public interface IDALMatNo
    {
 
        bool IsExist(string MatNo, string value);
 
        bool IsExist(Hashtable ht);
 
        bool IsExist(AjaxMatInfo model);
 
        bool Add(Material model, string loginUser);
 
        bool Update(Material model);
 
        bool Delete(string MatNo);
 
        bool AuditMat(string[] MatNo,string AuditModel,string user);
 
        bool BatchDelete(string[] MatNo,string loginUser);
        bool IsCheckMatNo(string MatNo);
 
        Material GetModel(string guid);
 
        IList<Material> GetList(string MatNo);
 
        IList<Material> GetList(AjaxMatList Json, ref PageInfo pageInfo);
 
        DataTable GetDataTable(string[] strWhere);
 
        DataTable GetDataTable(int PageSize, int PageIndex, string strWhere);
    }
}