|
@@ -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)
|
|
|
{
|