Browse Source

商户-活动配置,增加短信验证码功能

lcl 1 year ago
parent
commit
de7fac2947
1 changed files with 13 additions and 1 deletions
  1. 13 1
      Areas/Api/Controllers/v1/MainServer/MerchantParamSetController.cs

+ 13 - 1
Areas/Api/Controllers/v1/MainServer/MerchantParamSetController.cs

@@ -75,6 +75,7 @@ namespace MySystem.Areas.Api.Controllers.v1
             int ProfitDays = int.Parse(function.CheckInt(data["ProfitDays"].ToString())); //分红期限(天)
             decimal DiviPercent = decimal.Parse(function.CheckNum(data["DiviPercent"].ToString())); //最大分红比例
             int DiviPersons = int.Parse(function.CheckInt(data["DiviPersons"].ToString())); //单笔订单分红人数
+            string MobileCode = data["MobileCode"].ToString(); //短信验证码
             if (string.IsNullOrEmpty(data["IsAll"].ToString()))
             {
                 return new AppResultJson() { Status = "-1", Info = "请填写是否收全额" };
@@ -107,8 +108,19 @@ namespace MySystem.Areas.Api.Controllers.v1
             {
                 return new AppResultJson() { Status = "-1", Info = "请填写正确的单笔订单分红人数" };
             }
-            Dictionary<string, object> Obj = new Dictionary<string, object>();
             int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
+            MerchantInfo merchant = maindb.MerchantInfo.FirstOrDefault(m => m.Id == Id);
+            MobileCodeCheck mobilecheck = RedisDbconn.Instance.Get<MobileCodeCheck>("MobileCodeCheck:" + merchant.Mobile);
+            if (mobilecheck == null)
+            {
+                return new AppResultJson() { Status = "-1", Info = "短信验证码不正确" };
+            }
+            if (mobilecheck.CheckCode != MobileCode)
+            {
+                return new AppResultJson() { Status = "-1", Info = "短信验证码不正确" };
+            }
+            RedisDbconn.Instance.Clear("MobileCodeCheck:" + merchant.Mobile);
+            Dictionary<string, object> Obj = new Dictionary<string, object>();
             MerchantParamSet query = maindb.MerchantParamSet.FirstOrDefault(m => m.Id == Id);
             if(query == null)
             {