修改兑换商品管理

This commit is contained in:
lym
2026-03-13 00:35:44 +08:00
parent 92ced2aad2
commit be6ee77e38
44 changed files with 396 additions and 323 deletions

View File

@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Configuration;
@@ -380,6 +380,19 @@ namespace Mtxfw.Utility
{
Recount = 0;
// 调试时打印SQL参数
#if DEBUG
System.Diagnostics.Debug.WriteLine("--- GetDataSet 参数 ---");
System.Diagnostics.Debug.WriteLine("TABLE_NAME: " + TABLE_NAME);
System.Diagnostics.Debug.WriteLine("groupby: " + groupby);
System.Diagnostics.Debug.WriteLine("orderBy: " + orderBy);
System.Diagnostics.Debug.WriteLine("fieldlist: " + fieldlist);
System.Diagnostics.Debug.WriteLine("fieldlist2: " + fieldlist2);
System.Diagnostics.Debug.WriteLine("filter: " + filter);
System.Diagnostics.Debug.WriteLine("Start: " + Start);
System.Diagnostics.Debug.WriteLine("Limit: " + Limit);
#endif
using (SqlConnection Conn = new SqlConnection(strConn))
{
SqlParameter[] Params = { new SqlParameter("@datasrc", SqlDbType.VarChar,50),