修改兑换商品管理

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

@@ -1979,11 +1979,11 @@ namespace Mtxfw.Utility
public static Dictionary<int, string> GetuLevels()
{
Dictionary<int, string> dic = new Dictionary<int, string>();
dic.Add(0, "普通消费商");
dic.Add(1, "会员店");
dic.Add(2, "品牌店");
dic.Add(3, "旗舰店");
dic.Add(4, "");
dic.Add(0, "普通用户");
dic.Add(1, "VIP用户");
dic.Add(2, "健康推荐大使");
dic.Add(3, "健康服务商");
dic.Add(4, "市场合伙人");
dic.Add(5, "");
dic.Add(6, "");
return dic;
@@ -3621,7 +3621,7 @@ namespace Mtxfw.Utility
req.TemplateParamSet = TemplateParams.Split('|');
}
req.SmsSdkAppid = "1401043931";
req.Sign = "银花优选";
req.Sign = "任E森命";
SendSmsResponse res = client.SendSmsSync(req);
// 输出 JSON 格式的字符串回包
//Mtxfw.Utility.Common.WriteHtml("/weixin/sendsms.txt", AbstractModel.ToJsonString(res));

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),