chenzx
2024-12-18 cb55bfc387d604618fe37b93b89b60c7e83d5846
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Dapper;
 
namespace GasolineBlend.DAL
{
   public class GetPagingDAL:BaseNewsDAL
    {
        #region 分页获取数据
        /// <summary>
        /// 分页
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="selectStr">查询的列数</param>
        /// <param name="tableName">查询的表名</param>
        /// <param name="pageIndex">当前页</param>
        /// <param name="pageSize">页面长度</param>
        /// <param name="strWhere">查询条件</param>
        /// <param name="orderName">排序条件</param>
        /// <param name="RecordCount">返回条数</param>
        /// <returns></returns>
        public List<T> GetUserAccess<T>(string selectStr, string tableName, int pageIndex, int pageSize, string strWhere, string orderName,  ref int TotalCount)
        {
            var p = new DynamicParameters();
            p.Add("@TableFields", selectStr);
            p.Add("@TableName", tableName);
            p.Add("@SqlWhere", strWhere);
            p.Add("@OrderBy", orderName);
            p.Add("@PageIndex", pageIndex);
            p.Add("@PageSize", pageSize);
            p.Add("@TotalCount", dbType: DbType.Int32, direction: ParameterDirection.Output);
           
 
            List<T> ret = new List<T>();
            
                ret = Conn.Query<T>("Proc_Paging", p, commandType: CommandType.StoredProcedure, commandTimeout: 0).ToList();
                //ret = GetCJFDData(ret);
                TotalCount = p.Get<int>("TotalCount");
           
            return ret;
        }
        #endregion
    }
    public class GetPagingDBDAL : BaseDAL
    {
        #region 分页获取数据
        /// <summary>
        /// 分页
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="selectStr">查询的列数</param>
        /// <param name="tableName">查询的表名</param>
        /// <param name="pageIndex">当前页</param>
        /// <param name="pageSize">页面长度</param>
        /// <param name="strWhere">查询条件</param>
        /// <param name="orderName">排序条件</param>
        /// <param name="RecordCount">返回条数</param>
        /// <returns></returns>
        public List<T> GetUserAccess<T>(string selectStr, string tableName, int pageIndex, int pageSize, string strWhere, string orderName, ref int TotalCount)
        {
            var p = new DynamicParameters();
            p.Add("@TableFields", selectStr);
            p.Add("@TableName", tableName);
            p.Add("@SqlWhere", strWhere);
            p.Add("@OrderBy", orderName);
            p.Add("@PageIndex", pageIndex);
            p.Add("@PageSize", pageSize);
            p.Add("@TotalCount", dbType: DbType.Int32, direction: ParameterDirection.Output);
 
 
            List<T> ret = new List<T>();
 
            ret = Conn.Query<T>("Proc_Paging", p, commandType: CommandType.StoredProcedure, commandTimeout: 0).ToList();
            //ret = GetCJFDData(ret);
            TotalCount = p.Get<int>("TotalCount");
 
            return ret;
        }
        #endregion
    }
    public class GetPagingZdDAL : BaseZdwDAL
    {
        #region 分页获取数据
        /// <summary>
        /// 分页
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="selectStr">查询的列数</param>
        /// <param name="tableName">查询的表名</param>
        /// <param name="pageIndex">当前页</param>
        /// <param name="pageSize">页面长度</param>
        /// <param name="strWhere">查询条件</param>
        /// <param name="orderName">排序条件</param>
        /// <param name="RecordCount">返回条数</param>
        /// <returns></returns>
        public List<T> GetUserAccess<T>(string selectStr, string tableName, int pageIndex, int pageSize, string strWhere, string orderName, ref int TotalCount)
        {
            var p = new DynamicParameters();
            p.Add("@TableFields", selectStr);
            p.Add("@TableName", tableName);
            p.Add("@SqlWhere", strWhere);
            p.Add("@OrderBy", orderName);
            p.Add("@PageIndex", pageIndex);
            p.Add("@PageSize", pageSize);
            p.Add("@TotalCount", dbType: DbType.Int32, direction: ParameterDirection.Output);
            List<T> ret = new List<T>();
            ret = Conn.Query<T>("Proc_Paging", p, commandType: CommandType.StoredProcedure, buffered: true,commandTimeout: 0).ToList();
            //ret = GetCJFDData(ret);
            TotalCount = p.Get<int>("TotalCount");
 
            return ret;
        }
        #endregion
    }
    public class GetPagingDBAlarmDAL : BaseAlarmDAL
    {
        #region 分页获取数据
        /// <summary>
        /// 分页
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="selectStr">查询的列数</param>
        /// <param name="tableName">查询的表名</param>
        /// <param name="pageIndex">当前页</param>
        /// <param name="pageSize">页面长度</param>
        /// <param name="strWhere">查询条件</param>
        /// <param name="orderName">排序条件</param>
        /// <param name="RecordCount">返回条数</param>
        /// <returns></returns>
        public List<T> GetUserAccess<T>(string selectStr, string tableName, int pageIndex, int pageSize, string strWhere, string orderName, ref int TotalCount)
        {
            var p = new DynamicParameters();
            p.Add("@TableFields", selectStr);
            p.Add("@TableName", tableName);
            p.Add("@SqlWhere", strWhere);
            p.Add("@OrderBy", orderName);
            p.Add("@PageIndex", pageIndex);
            p.Add("@PageSize", pageSize);
            p.Add("@TotalCount", dbType: DbType.Int32, direction: ParameterDirection.Output);
            List<T> ret = new List<T>();
            ret = Conn.Query<T>("Proc_Paging", p, commandType: CommandType.StoredProcedure, buffered: true, commandTimeout: 0).ToList();
            //ret = GetCJFDData(ret);
            TotalCount = p.Get<int>("TotalCount");
 
            return ret;
        }
 
        public List<T> GetUserAccess<T>( string tableName,string sqlStr,string condition, int pageIndex, int pageSize, string orderDesc,string orderAsc, string pkField,string searchField, ref int TotalCount)
        {
            var p = new DynamicParameters();
            p.Add("@TableName", tableName);
            p.Add("@SqlStr", sqlStr);
            p.Add("@Condition", condition);
            p.Add("@PageIndex", pageIndex);
            p.Add("@PageSize", pageSize);
            p.Add("@orderDESC", orderDesc);
            p.Add("@orderASC", orderAsc);
            p.Add("@PKField", pkField);
            p.Add("@SearField", searchField);
            p.Add("@RecordCount", dbType: DbType.Int32, direction: ParameterDirection.Output);
            List<T> ret = new List<T>();
            ret = Conn.Query<T>("Proc_PagingNew", p, commandType: CommandType.StoredProcedure, buffered: true, commandTimeout: 0).ToList();
            //ret = GetCJFDData(ret);
            TotalCount = p.Get<int>("RecordCount");
 
            return ret;
        }
        #endregion
    }
}