Browse Source

调整返现逻辑

lcl 1 year ago
parent
commit
afdcf0b79c
3 changed files with 11 additions and 10 deletions
  1. 1 0
      AppStart/Helper/Profit/ProfitHelper.cs
  2. 5 9
      AppStart/RedisDbconn.cs
  3. 5 1
      Startup.cs

+ 1 - 0
AppStart/Helper/Profit/ProfitHelper.cs

@@ -308,6 +308,7 @@ namespace MySystem
                                                     if (suborder.CurDivi < suborder.MaxDivi)
                                                     {
                                                         // RedisDbconn.Instance.AddList("ConsumerOrders:Divi:" + PayMode + ":" + MerchantId, suborder);
+                                                        RedisDbconn.Instance.SetList("ConsumerOrders:Divi:" + PayMode + ":" + MerchantId, 0, suborder);
                                                     }
                                                     else
                                                     {

+ 5 - 9
AppStart/RedisDbconn.cs

@@ -97,6 +97,11 @@ namespace MySystem
             return csredis.LPush(key, value);
             // return 0;
         }
+        public bool SetList(string key, long index, object value)
+        {
+            return csredis.LSet(key, index, value);
+            // return 0;
+        }
         public T RPop<T>(string key)
         {
             return csredis.RPop<T>(key);
@@ -130,15 +135,6 @@ namespace MySystem
         }
         #endregion
 
-        #region 修改列表对象
-        public bool SetList(string key, int index, object value)
-        {
-            long itemindex = csredis.LLen(key) - index - 1;
-            return csredis.LSet(key, itemindex, value);
-            // return false;
-        }
-        #endregion
-
         #region 获取列表
         public List<T> GetList<T>(string key, int pageNum = 1, int pageSize = 10)
         {

+ 5 - 1
Startup.cs

@@ -172,9 +172,13 @@ namespace MySystem
             //必须打开的
             if(Library.ConfigurationManager.EnvironmentFlag == 1)
             {
-                MerchantStandardService.Instance.Start();
+                // MerchantStandardService.Instance.Start();
                 // MerchantStandardService.Instance.StartThree();
                 // MerchantStandardService.Instance.StartActive();
+                // ProfitHelper.Instance.ReturnStat("157186", 2);
+                // ProfitHelper.Instance.ReturnStat("157187", 2);
+                // ProfitHelper.Instance.ReturnStat("157190", 2);
+                // ProfitHelper.Instance.ReturnStat("157191", 2);
             }
             if(Library.ConfigurationManager.EnvironmentFlag == 2)
             {