chengsc
2024-07-23 f575652587d4160ab42e75acb2bc26b4f60fb7c3
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
using Model;
using System.Collections;
using System.Collections.Generic;
using System.Data;
 
namespace BLL
 
{
    public interface IDALUserInfo
    {
        bool IsExist(string name,string value);
        bool IsExist(Hashtable ht);
        bool Add(UserInfo model,string loginUser);
      
        bool Update(UserInfo model);
 
        bool Update(string UserCode,string Pwd,string UpdateUser);
 
        bool Delete(string UserCode);
 
        bool BatchDelete(string[] UserCode);
        UserInfo GetModel(string username,string pwd);
 
        UserInfo GetModel(string usercode);
        IList<UserInfo> GetList(AjaxUserList Json,ref PageInfo pageInfo);
 
        DataTable GetDataTable(string[] strWhere);
 
        DataTable GetDataTable(int PageSize,int PageIndex,string strWhere);
 
 
        List<LoginLog> GetLogInUserRecordList();
    }
}