Browse Source

提交修改费率接口,不立马设置

lcl 1 day ago
parent
commit
cf87f92331
1 changed files with 3 additions and 3 deletions
  1. 3 3
      Areas/Api/Controllers/Main/MerchantAddInfoController.cs

+ 3 - 3
Areas/Api/Controllers/Main/MerchantAddInfoController.cs

@@ -831,9 +831,9 @@ namespace MySystem.Areas.Api.Controllers.v1
             MerchantAddInfo add = maindb.MerchantAddInfo.FirstOrDefault(m => m.Id == Id);
             if(add != null)
             {
-                add.FeeRate = SettleFee;
-                maindb.SaveChanges();
-                RedisDbconn.Instance.AddList("HaoDaFeeQueue", Id.ToString());
+                // add.FeeRate = SettleFee;
+                // maindb.SaveChanges();
+                RedisDbconn.Instance.AddList("HaoDaFeeQueue", Id.ToString() + "|" + SettleFee);
                 return Json(new AppResultJson() { Status = "1", Info = "" });
             }
             return Json(new AppResultJson() { Status = "-1", Info = "设置失败" });