Explorar el Código

修复每天重置交易额的问题

lcl hace 1 año
padre
commit
5bbf7a7c7c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      AppStart/Helper/StatService.cs

+ 1 - 1
AppStart/Helper/StatService.cs

@@ -1873,7 +1873,7 @@ namespace MySystem
             foreach(string UserId in dic.Keys)
             {
                 index += 1;
-                sql += "update Users set ThisMonthTrade=ThisMonthTrade+" + dic[UserId] + " where Id=" + UserId + ";";
+                sql += "update Users set ThisMonthTrade=" + dic[UserId] + " where Id=" + UserId + ";";
                 if(index >= 200)
                 {
                     CustomerSqlConn.op(sql, MysqlConn.SqlConnStr);