Tjiny
2025-06-24 6b9e8c7ff2eef9b69e37ee383e243497e68d1f3c
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using HH.WCS.Mobox3.RiDong.models;
using HH.WCS.Mobox3.RiDong.util;
using SqlSugar;
 
namespace HH.WCS.Mobox3.RiDong.generalMethod;
 
/// <summary>
/// 数据库连接帮助类
/// </summary>
public static class AdoSqlMethod<T> where T : class, new()
{
    
    /// <summary>
    /// 查询一条数据
    /// </summary>
    /// <returns></returns>
    public static T QueryFirst()
    {
        var db = new SqlHelper<object>().GetInstance();
 
        // 返回数据
        return db.Queryable<T>().First();
    }
    
    /// <summary>
    /// 根据条件查询一条数据
    /// </summary>
    /// <param name="condition">条件</param>
    /// <returns></returns>
    public static T QueryFirst(Expression<Func<T, bool>> condition)
    {
        var db = new SqlHelper<object>().GetInstance();
 
        // 返回数据
        return db.Queryable<T>().First(condition);
    }
 
    /// <summary>
    /// 根据条件查询多条数据
    /// </summary>
    /// <param name="condition"></param>
    public static List<T> QueryList(Expression<Func<T, bool>> condition)
    {
        var db = new SqlHelper<object>().GetInstance();
 
        // 返回数据
        return db.Queryable<T>().Where(condition).ToList();
    }
 
    /// <summary>
    /// 根据条件查询对应数据数量
    /// </summary>
    /// <param name="condition">条件</param>
    /// <returns></returns>
    public static int QueryCount(Expression<Func<T, bool>> condition)
    {
        var db = new SqlHelper<object>().GetInstance();
 
        // 返回数据
        return db.Queryable<T>().Count(condition);
    }
 
    /// <summary>
    /// 根据条件修改一条数据(事务)
    /// </summary>
    /// <param name="sqlSugarClient">数据库上下文连接</param>
    /// <param name="model">需要进行修改的对象</param>
    /// <param name="condition">修改条件</param>
    /// <returns></returns>
    public static bool UpdateFirstTran(SqlSugarClient sqlSugarClient, T model, Expression<Func<T, object>> condition)
    {
        // 修改数据
        var executeCommand = sqlSugarClient.Updateable(model).UpdateColumns(condition).ExecuteCommand();
 
        if (executeCommand > 0)
        {
            return true;
        }
        else
        {
            return false;
        }
    }
 
    /// <summary>
    /// 根据条件修改一条数据
    /// </summary>
    /// <param name="model">需要进行修改的对象</param>
    /// <param name="condition">修改条件</param>
    /// <returns></returns>
    public static bool UpdateFirst(T model, Expression<Func<T, object>> condition)
    {
        var sqlSugarClient = new SqlHelper<object>().GetInstance();
 
        // 修改数据
        var executeCommand = sqlSugarClient.Updateable(model).UpdateColumns(condition).ExecuteCommand();
 
        if (executeCommand > 0)
        {
            return true;
        }
        else
        {
            return false;
        }
    }
    
    /// <summary>
    /// 根据条件修改一条数据的状态(sql语句)
    /// </summary>
    /// <param name="model">需要进行修改的对象</param>
    /// <param name="sql">修改条件</param>
    /// <returns></returns>
    public static bool UpdateFirstOutBoundStart(T model, string sql)
    {
        var sqlSugarClient = new SqlHelper<object>().GetInstance();
 
        // 修改数据
        var executeCommand = sqlSugarClient.Ado.ExecuteCommand(sql, model);
 
        if (executeCommand > 0)
        {
            return true;
        }
        else
        {
            return false;
        }
    }
 
    /// <summary>
    /// 根据条件修改多条数据(事务)
    /// </summary>
    /// <param name="sqlSugarClient">数据库上下文连接</param>
    /// <param name="models"></param>
    /// <param name="condition"></param>
    /// <returns></returns>
    public static int UpdateListTran(SqlSugarClient sqlSugarClient, List<T> models,
        Expression<Func<T, object>> condition)
    {
        // 修改数据
        return sqlSugarClient.Updateable(models).UpdateColumns(condition).ExecuteCommand();
    }
 
    /// <summary>
    /// 根据条件修改多条数据
    /// </summary>
    /// <param name="models"></param>
    /// <param name="condition"></param>
    /// <returns></returns>
    public static int UpdateList(List<T> models, Expression<Func<T, object>> condition)
    {
        var sqlSugarClient = new SqlHelper<object>().GetInstance();
        // 修改数据
        return sqlSugarClient.Updateable(models).UpdateColumns(condition).ExecuteCommand();
    }
 
    /// <summary>
    /// 新增一条数据(事务)
    /// </summary>
    /// <param name="sqlSugarClient">数据库上下文连接</param>
    /// <param name="model">需要新增的数据</param>
    /// <returns></returns>
    public static bool AddFirstTran(SqlSugarClient sqlSugarClient, T model)
    {
        var executeCommand = sqlSugarClient.Insertable(model).ExecuteCommand();
 
        if (executeCommand > 0)
        {
            return true;
        }
        else
        {
            return false;
        }
    }
 
 
    /// <summary>
    /// 新增多条出库单数据(事务)
    /// </summary>
    /// <param name="sqlSugarClient">数据库上下文连接</param>
    /// <param name="models">需要新增的数据</param>
    /// <returns></returns>
    public static bool AddOutboundOrderAndDetailsListTran(SqlSugarClient sqlSugarClient, List<OutboundOrder> models)
    {
        int executeCommand = 0;
        foreach (var outboundOrder in models)
        {
            executeCommand = sqlSugarClient.Insertable(outboundOrder).ExecuteCommand();
            sqlSugarClient.Insertable(outboundOrder.Details).ExecuteCommand();
        }
 
        if (executeCommand > 0)
        {
            return true;
        }
        else
        {
            return false;
        }
    }
 
    /// <summary>
    /// 新增一条数据(事务)
    /// </summary>
    /// <param name="model">需要新增的数据</param>
    /// <returns></returns>
    public static bool AddFirst(T model)
    {
        var sqlSugarClient = new SqlHelper<object>().GetInstance();
 
        var executeCommand = sqlSugarClient.Insertable(model).ExecuteCommand();
 
        if (executeCommand > 0)
        {
            return true;
        }
        else
        {
            return false;
        }
    }
 
 
    /// <summary>
    /// 新增多条数据(事务)
    /// </summary>
    /// <param name="sqlSugarClient">数据库上下文连接</param>
    /// <param name="models">需要新增的数据集合</param>
    /// <returns></returns>
    public static int AddListTran(SqlSugarClient sqlSugarClient, List<T> models)
    {
        return sqlSugarClient.Insertable(models).ExecuteCommand();
    }
 
    /// <summary>
    /// 新增多条数据
    /// </summary>
    /// <param name="models">需要新增的数据集合</param>
    /// <returns></returns>
    public static int AddList(List<T> models)
    {
        var sqlSugarClient = new SqlHelper<object>().GetInstance();
        return sqlSugarClient.Insertable(models).ExecuteCommand();
    }
 
    /// <summary>
    /// 删除一条数据(事务)
    /// </summary>
    /// <param name="sqlSugarClient">数据库上下文连接</param>
    /// <param name="model">需要删除的对象</param>
    /// <returns></returns>
    public static bool DeleteFirstTran(SqlSugarClient sqlSugarClient, T model)
    {
        var executeCommand = sqlSugarClient.Deleteable(model).ExecuteCommand();
 
        if (executeCommand > 0)
        {
            return true;
        }
        else
        {
            return false;
        }
    }
 
    /// <summary>
    /// 删除一条数据(事务)
    /// </summary>
    /// <param name="model">需要删除的对象</param>
    /// <returns></returns>
    public static bool DeleteFirst(T model)
    {
        var sqlSugarClient = new SqlHelper<object>().GetInstance();
 
        var executeCommand = sqlSugarClient.Deleteable(model).ExecuteCommand();
 
        if (executeCommand > 0)
        {
            return true;
        }
        else
        {
            return false;
        }
    }
 
    /// <summary>
    /// 删除多条数据(事务)
    /// </summary>
    /// <param name="sqlSugarClient">数据库上下文连接</param>
    /// <param name="models">需要删除的对象集合</param>
    /// <returns></returns>
    public static int DeleteListTran(SqlSugarClient sqlSugarClient, List<T> models)
    {
        return sqlSugarClient.Deleteable(models).ExecuteCommand();
    }
 
    /// <summary>
    /// 删除多条数据(事务)
    /// </summary>
    /// <param name="models">需要删除的对象集合</param>
    /// <returns></returns>
    public static int DeleteList(List<T> models)
    {
        var sqlSugarClient = new SqlHelper<object>().GetInstance();
        return sqlSugarClient.Deleteable(models).ExecuteCommand();
    }
 
    /// <summary>
    /// 根据条件删除数据(事务)
    /// </summary>
    /// <param name="sqlSugarClient">数据库上下文连接</param>
    /// <param name="condition">条件</param>
    /// <returns></returns>
    public static int DeleteListTran(SqlSugarClient sqlSugarClient, Expression<Func<T, bool>> condition)
    {
        return sqlSugarClient.Deleteable<T>().Where(condition).ExecuteCommand();
    }
 
    /// <summary>
    /// 根据条件删除数据(事务)
    /// </summary>
    /// <param name="condition">条件</param>
    /// <returns></returns>
    public static int DeleteList(Expression<Func<T, bool>> condition)
    {
        var sqlSugarClient = new SqlHelper<object>().GetInstance();
        return sqlSugarClient.Deleteable<T>().Where(condition).ExecuteCommand();
    }
 
    /// <summary>
    /// 倒序查询
    /// </summary>
    /// <param name="orderBy"></param>
    /// <returns></returns>
    public static List<T> QueryFirstByDecs(Expression<Func<T, object>> orderBy)
    {
        var db = new SqlHelper<object>().GetInstance();
 
        // 返回数据
        return db.Queryable<T>().OrderByDescending(orderBy).Take(2).ToList();
    }
 
    /// <summary>
    /// 获取数据库上下文连接
    /// </summary>
    /// <returns></returns>
    public static SqlSugarClient QuerySqlSugarClient()
    {
        return new SqlHelper<object>().GetInstance();
    }
}