瀏覽代碼

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

lcl 2 天之前
父節點
當前提交
cf87f92331
共有 1 個文件被更改,包括 3 次插入3 次删除
  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 = "设置失败" });