|
@@ -188,7 +188,6 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
}).Entity;
|
|
|
maindb.SaveChanges();
|
|
|
}
|
|
|
- RedisDbconn.Instance.Clear("UserForMobile:" + Mobile);
|
|
|
}
|
|
|
else
|
|
|
{
|
|
@@ -381,11 +380,11 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
Users user = maindb.Users.FirstOrDefault(m => m.Id == query.UserId) ?? new Users();
|
|
|
if (user.Status == -1)
|
|
|
{
|
|
|
- return Json(new AppResultJson() { Status = "-1", Info = "账号已注销,请联系客小爽客服", Data = Obj });
|
|
|
+ return Json(new AppResultJson() { Status = "-1", Info = "账号已注销,请联系码牌客服", Data = Obj });
|
|
|
}
|
|
|
if (user.Status == 1)
|
|
|
{
|
|
|
- return Json(new AppResultJson() { Status = "-1", Info = "账号已锁定,请联系客小爽客服", Data = Obj });
|
|
|
+ return Json(new AppResultJson() { Status = "-1", Info = "账号已锁定,请联系码牌客服", Data = Obj });
|
|
|
}
|
|
|
if (LoginPwd != "ke#xiao@s_2022")
|
|
|
{
|
|
@@ -421,11 +420,11 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
Users user = maindb.Users.FirstOrDefault(m => m.Id == query.UserId) ?? new Users();
|
|
|
if (user.Status == -1)
|
|
|
{
|
|
|
- return Json(new AppResultJson() { Status = "-1", Info = "账号已注销,请联系客小爽客服", Data = Obj });
|
|
|
+ return Json(new AppResultJson() { Status = "-1", Info = "账号已注销,请联系码牌客服", Data = Obj });
|
|
|
}
|
|
|
if (user.Status == 1)
|
|
|
{
|
|
|
- return Json(new AppResultJson() { Status = "-1", Info = "账号已锁定,请联系客小爽客服", Data = Obj });
|
|
|
+ return Json(new AppResultJson() { Status = "-1", Info = "账号已锁定,请联系码牌客服", Data = Obj });
|
|
|
}
|
|
|
if (LoginPwd != "ke#xiao@s_2022")
|
|
|
{
|
|
@@ -778,7 +777,6 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
auth.BankCardAccount = SettleBankCardNo; //银行卡账号
|
|
|
}
|
|
|
maindb.SaveChanges();
|
|
|
- RedisDbconn.Instance.AddList("CashPersonalCreateQueue", Id.ToString());
|
|
|
}
|
|
|
return new AppResultJson() { Status = "1", Info = "", Data = Obj };
|
|
|
}
|
|
@@ -816,7 +814,6 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
query.SettleBankCardNo = SettleBankCardNo; //结算银行卡号
|
|
|
query.BankCardPositiveImage = BankCardPositiveImage; //银行卡正面照
|
|
|
maindb.SaveChanges();
|
|
|
- RedisDbconn.Instance.AddList("CashPersonalCreateQueue", Id.ToString());
|
|
|
return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
|
|
|
}
|
|
|
return Json(new AppResultJson() { Status = "-1", Info = "认证失败,请重试", Data = Obj });
|
|
@@ -834,15 +831,6 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
{
|
|
|
JsonData data = JsonMapper.ToObject(value);
|
|
|
int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
|
|
|
- string cashCheck = RedisDbconn.Instance.Get<string>("CashPersonalAddResult:" + Id);
|
|
|
- if (string.IsNullOrEmpty(cashCheck))
|
|
|
- {
|
|
|
- return new AppResultJson() { Status = "0", Info = "" };
|
|
|
- }
|
|
|
- if (cashCheck != "success")
|
|
|
- {
|
|
|
- return new AppResultJson() { Status = "-1", Info = cashCheck };
|
|
|
- }
|
|
|
string MobileCode = data["MobileCode"].ToString(); //短信验证码
|
|
|
string Mobile = data["Mobile"].ToString();
|
|
|
string BankName = data["BankName"].ToString(); //开户行全称
|
|
@@ -1027,8 +1015,6 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
BankMobile = BankMobile, //银行预留手机号码
|
|
|
}).Entity;
|
|
|
maindb.SaveChanges();
|
|
|
- // RedisDbconn.Instance.AddList("MakeReferenceQrCode", query.Id.ToString());
|
|
|
- RedisDbconn.Instance.AddList("CashPersonalCreateQueue", Id.ToString());
|
|
|
|
|
|
//实名认证成功后消息推送
|
|
|
Users users = maindb.Users.FirstOrDefault(m => m.Id == query.ParentUserId);
|
|
@@ -1037,15 +1023,10 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
UserId = users.Id, //创客Id
|
|
|
MsgType = 2,
|
|
|
Title = "来新人啦", //标题
|
|
|
- Summary = "您的客小爽系统有新人加入了,请进入客小爽-我的创客中查看!",//简介
|
|
|
+ Summary = "您的码牌系统有新人加入了,请进入码牌-我的创客中查看!",//简介
|
|
|
CreateDate = DateTime.Now,
|
|
|
|
|
|
}));
|
|
|
-
|
|
|
- var TradeMonth = DateTime.Now.ToString("yyyyMMdd");
|
|
|
- string SendData = "{\"Kind\":\"2\",\"Data\":{\"UserId\":\"" + users.Id + "\",\"DirectUserId\":\"" + Id + "\",\"TradeMonth\":\"" + TradeMonth + "\"}}";
|
|
|
- RedisDbconn.Instance.AddList("RecommendActStatQueue", SendData);
|
|
|
-
|
|
|
return new AppResultJson() { Status = "1", Info = "", Data = Obj };
|
|
|
}
|
|
|
else
|
|
@@ -1062,193 +1043,6 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
}
|
|
|
|
|
|
|
|
|
- // 提交代付签约
|
|
|
- // [Authorize]
|
|
|
- // public JsonResult PostAuthCheck(string value)
|
|
|
- // {
|
|
|
- // value = DesDecrypt(value);
|
|
|
- // function.WriteLog(value, "提交代付签约");
|
|
|
- // JsonData data = JsonMapper.ToObject(value);
|
|
|
- // int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
|
|
|
- // string RealName = data["RealName"].ToString(); //真实姓名
|
|
|
- // string CertId = data["CertId"].ToString(); //身份证号
|
|
|
- // string Areas = data["Areas"].ToString(); //所在地区
|
|
|
- // string Mobile = data["Mobile"].ToString(); //手机号
|
|
|
- // string BankName = data["BankName"].ToString(); //开户行全称
|
|
|
- // string SettleBankName = data["SettleBankName"].ToString(); //结算银行名称
|
|
|
- // string SettleBankCardNo = data["SettleBankCardNo"].ToString(); //结算银行卡号
|
|
|
- // string CertFrontImage = data["CertFrontImage"].ToString(); //身份证正面照
|
|
|
- // string CertReverseImage = data["CertReverseImage"].ToString(); //身份证反面照
|
|
|
- // string HandCertImage = data["HandCertImage"].ToString(); //手持身份证
|
|
|
- // string BankCardPositiveImage = data["BankCardPositiveImage"].ToString(); //银行卡正面照
|
|
|
- // string BankMobile = data["BankMobile"].ToString(); //银行预留手机号
|
|
|
- // string Distribute = "";
|
|
|
- // if (value.Contains("\"Distribute\""))
|
|
|
- // {
|
|
|
- // Distribute = data["Distribute"].ToString();
|
|
|
- // }
|
|
|
- // if (string.IsNullOrEmpty(data["BankMobile"].ToString()))
|
|
|
- // {
|
|
|
- // return Json(new AppResultJson() { Status = "-1", Info = "请填写手机号" });
|
|
|
- // }
|
|
|
- // if (data["BankMobile"].ToString().Length > 11)
|
|
|
- // {
|
|
|
- // return Json(new AppResultJson() { Status = "-1", Info = "手机号最多11个字符" });
|
|
|
- // }
|
|
|
- // if (function.CheckMobile(data["BankMobile"].ToString()) == "")
|
|
|
- // {
|
|
|
- // return Json(new AppResultJson() { Status = "-1", Info = "请填写正确的手机号" });
|
|
|
- // }
|
|
|
- // Dictionary<string, object> Obj = new Dictionary<string, object>();
|
|
|
- // bool checkCertId = maindb.Users.Any(m => m.Id != Id && m.CertId == CertId);
|
|
|
- // if (checkCertId)
|
|
|
- // {
|
|
|
- // return Json(new AppResultJson() { Status = "-1", Info = "您输入的身份证号已经认证过了,请更换身份证" });
|
|
|
- // }
|
|
|
- // Users query = maindb.Users.FirstOrDefault(m => m.Id == Id);
|
|
|
- // if (query != null)
|
|
|
- // {
|
|
|
- // query.RealName = RealName; //真实姓名
|
|
|
- // query.CertId = CertId; //身份证号
|
|
|
- // query.Areas = Areas; //所在地区
|
|
|
- // query.SeoTitle = BankName;
|
|
|
- // query.SettleBankCardNo = SettleBankCardNo; //结算银行卡号
|
|
|
- // query.SettleBankName = SettleBankName; //结算银行名称
|
|
|
- // // query.CertFrontImage = CertFrontImage; //身份证正面照
|
|
|
- // // query.CertReverseImage = CertReverseImage; //身份证反面照
|
|
|
- // query.HandCertImage = HandCertImage; //手持身份证
|
|
|
- // query.BankCardPositiveImage = BankCardPositiveImage; //银行卡正面照
|
|
|
- // maindb.SaveChanges();
|
|
|
- // RedisDbconn.Instance.Set("FrontCertImg:" + Id, CertFrontImage, 600);
|
|
|
- // RedisDbconn.Instance.Set("BackCertImg:" + Id, CertReverseImage, 600);
|
|
|
- // RedisDbconn.Instance.AddList("CashPersonalCreateQueue", Id.ToString());
|
|
|
- // return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
|
|
|
- // }
|
|
|
- // return Json(new AppResultJson() { Status = "-1", Info = "认证失败,请重试", Data = Obj });
|
|
|
- // }
|
|
|
-
|
|
|
- // [Authorize]
|
|
|
- // public JsonResult PostAuth2(string value)
|
|
|
- // {
|
|
|
- // value = DesDecrypt(value);
|
|
|
- // JsonData data = JsonMapper.ToObject(value);
|
|
|
- // AppResultJson result = PostAuth2Do(value);
|
|
|
- // return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
|
|
|
- // }
|
|
|
- // public AppResultJson PostAuth2Do(string value)
|
|
|
- // {
|
|
|
- // JsonData data = JsonMapper.ToObject(value);
|
|
|
- // int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
|
|
|
- // string cashCheck = RedisDbconn.Instance.Get<string>("CashPersonalAddResult:" + Id);
|
|
|
- // if(string.IsNullOrEmpty(cashCheck))
|
|
|
- // {
|
|
|
- // return new AppResultJson() { Status = "0", Info = "" };
|
|
|
- // }
|
|
|
- // if(cashCheck != "success")
|
|
|
- // {
|
|
|
- // return new AppResultJson() { Status = "-1", Info = cashCheck };
|
|
|
- // }
|
|
|
- // string RealName = data["RealName"].ToString(); //真实姓名
|
|
|
- // string CertId = data["CertId"].ToString(); //身份证号
|
|
|
- // string Areas = data["Areas"].ToString(); //所在地区
|
|
|
- // string Mobile = data["Mobile"].ToString(); //手机号
|
|
|
- // string BankName = data["BankName"].ToString(); //开户行全称
|
|
|
- // string SettleBankName = data["SettleBankName"].ToString(); //结算银行名称
|
|
|
- // string SettleBankCardNo = data["SettleBankCardNo"].ToString(); //结算银行卡号
|
|
|
- // string CertFrontImage = data["CertFrontImage"].ToString(); //身份证正面照
|
|
|
- // string CertReverseImage = data["CertReverseImage"].ToString(); //身份证反面照
|
|
|
- // string HandCertImage = data["HandCertImage"].ToString(); //手持身份证
|
|
|
- // string BankCardPositiveImage = data["BankCardPositiveImage"].ToString(); //银行卡正面照
|
|
|
- // string BankMobile = data["BankMobile"].ToString(); //银行预留手机号
|
|
|
- // string Distribute = "";
|
|
|
- // if (value.Contains("\"Distribute\""))
|
|
|
- // {
|
|
|
- // Distribute = data["Distribute"].ToString();
|
|
|
- // }
|
|
|
- // if (string.IsNullOrEmpty(data["BankMobile"].ToString()))
|
|
|
- // {
|
|
|
- // return new AppResultJson() { Status = "-1", Info = "请填写手机号" };
|
|
|
- // }
|
|
|
- // if (data["BankMobile"].ToString().Length > 11)
|
|
|
- // {
|
|
|
- // return new AppResultJson() { Status = "-1", Info = "手机号最多11个字符" };
|
|
|
- // }
|
|
|
- // if (function.CheckMobile(data["BankMobile"].ToString()) == "")
|
|
|
- // {
|
|
|
- // return new AppResultJson() { Status = "-1", Info = "请填写正确的手机号" };
|
|
|
- // }
|
|
|
- // Dictionary<string, object> Obj = new Dictionary<string, object>();
|
|
|
- // bool checkCertId = maindb.Users.Any(m => m.Id != Id && m.CertId == CertId);
|
|
|
- // if (checkCertId)
|
|
|
- // {
|
|
|
- // return new AppResultJson() { Status = "-1", Info = "您输入的身份证号已经认证过了,请更换身份证" };
|
|
|
- // }
|
|
|
- // Users query = maindb.Users.FirstOrDefault(m => m.Id == Id);
|
|
|
- // if (query != null)
|
|
|
- // {
|
|
|
- // string result = BankCardCheckForThree.Instance.Do(SettleBankCardNo, CertId, RealName);
|
|
|
- // JsonData jsonObj = JsonMapper.ToObject(result);
|
|
|
- // if (jsonObj["code"].ToString() == "200")
|
|
|
- // {
|
|
|
- // if (jsonObj["data"]["result"].ToString() == "0")
|
|
|
- // {
|
|
|
- // query.AuthFlag = 1;
|
|
|
- // query.AuthDate = DateTime.Now;
|
|
|
- // query.RealName = RealName; //真实姓名
|
|
|
- // query.CertId = CertId; //身份证号
|
|
|
- // query.Areas = Areas; //所在地区
|
|
|
- // query.SeoTitle = BankName;
|
|
|
- // query.SettleBankCardNo = SettleBankCardNo; //结算银行卡号
|
|
|
- // query.SettleBankName = SettleBankName; //结算银行名称
|
|
|
- // query.CertFrontImage = CertFrontImage; //身份证正面照
|
|
|
- // query.CertReverseImage = CertReverseImage; //身份证反面照
|
|
|
- // query.HandCertImage = HandCertImage; //手持身份证
|
|
|
- // query.BankCardPositiveImage = BankCardPositiveImage; //银行卡正面照
|
|
|
- // maindb.SaveChanges();
|
|
|
- // UserAuthRecord auth = maindb.UserAuthRecord.Add(new UserAuthRecord()
|
|
|
- // {
|
|
|
- // CreateDate = DateTime.Now,
|
|
|
- // UserId = Id, //创客
|
|
|
- // RealName = RealName, //真实姓名
|
|
|
- // IdcardNo = CertId, //身份证号码
|
|
|
- // BankCardAccount = SettleBankCardNo, //银行卡账号
|
|
|
- // BankMobile = BankMobile, //银行预留手机号码
|
|
|
- // }).Entity;
|
|
|
- // maindb.SaveChanges();
|
|
|
- // RedisDbconn.Instance.AddList("MakeReferenceQrCode", query.Id.ToString());
|
|
|
-
|
|
|
- // //实名认证成功后消息推送
|
|
|
- // Users users = maindb.Users.FirstOrDefault(m => m.Id == query.ParentUserId);
|
|
|
- // RedisDbconn.Instance.AddList("MsgPersonalQueue", Newtonsoft.Json.JsonConvert.SerializeObject(new MsgPersonal()
|
|
|
- // {
|
|
|
- // UserId = users.Id, //创客Id
|
|
|
- // MsgType = 2,
|
|
|
- // Title = "来新人啦", //标题
|
|
|
- // Summary = "您的客小爽系统有新人加入了,请进入客小爽-我的创客中查看!",//简介
|
|
|
- // CreateDate = DateTime.Now,
|
|
|
-
|
|
|
- // }));
|
|
|
-
|
|
|
- // var TradeMonth = DateTime.Now.ToString("yyyyMMdd");
|
|
|
- // string SendData = "{\"Kind\":\"2\",\"Data\":{\"UserId\":\"" + users.Id + "\",\"DirectUserId\":\"" + Id + "\",\"TradeMonth\":\"" + TradeMonth + "\"}}";
|
|
|
- // RedisDbconn.Instance.AddList("RecommendActStatQueue", SendData);
|
|
|
-
|
|
|
- // return new AppResultJson() { Status = "1", Info = "", Data = Obj };
|
|
|
- // }
|
|
|
- // else
|
|
|
- // {
|
|
|
- // return new AppResultJson() { Status = "-1", Info = jsonObj["data"]["desc"].ToString() };
|
|
|
- // }
|
|
|
- // }
|
|
|
- // else
|
|
|
- // {
|
|
|
- // return new AppResultJson() { Status = "-1", Info = jsonObj["msg"].ToString() };
|
|
|
- // }
|
|
|
- // }
|
|
|
- // return new AppResultJson() { Status = "-1", Info = "认证失败,请重试" };
|
|
|
- // }
|
|
|
-
|
|
|
-
|
|
|
[Authorize]
|
|
|
public JsonResult PostAuth2(string value, string CertFrontBase64, string CertReverseBase64)
|
|
|
{
|
|
@@ -1330,9 +1124,6 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
BankMobile = BankMobile, //银行预留手机号码
|
|
|
}).Entity;
|
|
|
maindb.SaveChanges();
|
|
|
- RedisDbconn.Instance.Set("FrontCertImg:" + Id, CertFrontBase64, 600);
|
|
|
- RedisDbconn.Instance.Set("BackCertImg:" + Id, CertReverseBase64, 600);
|
|
|
- RedisDbconn.Instance.AddList("CashPersonalCreateQueue", Id.ToString());
|
|
|
|
|
|
//实名认证成功后消息推送
|
|
|
Users users = maindb.Users.FirstOrDefault(m => m.Id == query.ParentUserId);
|
|
@@ -1341,15 +1132,11 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
UserId = users.Id, //创客Id
|
|
|
MsgType = 2,
|
|
|
Title = "来新人啦", //标题
|
|
|
- Summary = "您的客小爽系统有新人加入了,请进入客小爽-我的创客中查看!",//简介
|
|
|
+ Summary = "您的码牌系统有新人加入了,请进入码牌-我的创客中查看!",//简介
|
|
|
CreateDate = DateTime.Now,
|
|
|
|
|
|
}));
|
|
|
|
|
|
- var TradeMonth = DateTime.Now.ToString("yyyyMMdd");
|
|
|
- string SendData = "{\"Kind\":\"2\",\"Data\":{\"UserId\":\"" + users.Id + "\",\"DirectUserId\":\"" + Id + "\",\"TradeMonth\":\"" + TradeMonth + "\"}}";
|
|
|
- RedisDbconn.Instance.AddList("RecommendActStatQueue", SendData);
|
|
|
-
|
|
|
return new AppResultJson() { Status = "1", Info = "", Data = Obj };
|
|
|
}
|
|
|
else
|
|
@@ -1422,128 +1209,12 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
auth.BankMobile = BankMobile; //银行预留手机号码
|
|
|
}
|
|
|
maindb.SaveChanges();
|
|
|
- RedisDbconn.Instance.AddList("CashPersonalCreateQueue", Id.ToString());
|
|
|
return new AppResultJson() { Status = "1", Info = "", Data = Obj };
|
|
|
}
|
|
|
return new AppResultJson() { Status = "-1", Info = "认证失败,请重试" };
|
|
|
}
|
|
|
|
|
|
|
|
|
- // 提交代付签约
|
|
|
- // [Authorize]
|
|
|
- // public JsonResult CashAuthCheck(string value)
|
|
|
- // {
|
|
|
- // value = DesDecrypt(value);
|
|
|
- // JsonData data = JsonMapper.ToObject(value);
|
|
|
- // int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
|
|
|
- // string CertFrontImage = data["CertFrontImage"].ToString(); //身份证正面照
|
|
|
- // string CertReverseImage = data["CertReverseImage"].ToString(); //身份证反面照
|
|
|
- // // string BankName = data["BankName"].ToString(); //开户行全称
|
|
|
- // string SettleBankName = data["SettleBankName"].ToString(); //结算银行名称
|
|
|
- // string SettleBankCardNo = data["SettleBankCardNo"].ToString(); //结算银行卡号
|
|
|
- // string BankMobile = data["BankMobile"].ToString(); //银行预留手机号
|
|
|
- // if (string.IsNullOrEmpty(data["BankMobile"].ToString()))
|
|
|
- // {
|
|
|
- // return Json(new AppResultJson() { Status = "-1", Info = "请填写手机号" });
|
|
|
- // }
|
|
|
- // if (data["BankMobile"].ToString().Length > 11)
|
|
|
- // {
|
|
|
- // return Json(new AppResultJson() { Status = "-1", Info = "手机号最多11个字符" });
|
|
|
- // }
|
|
|
- // if (function.CheckMobile(data["BankMobile"].ToString()) == "")
|
|
|
- // {
|
|
|
- // return Json(new AppResultJson() { Status = "-1", Info = "请填写正确的手机号" });
|
|
|
- // }
|
|
|
- // Dictionary<string, object> Obj = new Dictionary<string, object>();
|
|
|
- // string check = RedisDbconn.Instance.Get<string>("CashAuth:" + Id);
|
|
|
- // if (!string.IsNullOrEmpty(check))
|
|
|
- // {
|
|
|
- // return Json(new AppResultJson() { Status = "-1", Info = "资料审核中, 请稍后再试" });
|
|
|
- // }
|
|
|
- // RedisDbconn.Instance.Set("CashAuth:" + Id, "1");
|
|
|
- // RedisDbconn.Instance.SetExpire("CashAuth:" + Id, 300);
|
|
|
- // Users query = maindb.Users.FirstOrDefault(m => m.Id == Id);
|
|
|
- // if (query != null)
|
|
|
- // {
|
|
|
- // query.SettleBankCardNo = SettleBankCardNo; //结算银行卡号
|
|
|
- // query.SettleBankName = SettleBankName; //结算银行名称
|
|
|
- // // query.CertFrontImage = CertFrontImage; //身份证正面照
|
|
|
- // // query.CertReverseImage = CertReverseImage; //身份证反面照
|
|
|
- // RedisDbconn.Instance.Set("FrontCertImg:" + Id, CertFrontImage, 600);
|
|
|
- // RedisDbconn.Instance.Set("BackCertImg:" + Id, CertReverseImage, 600);
|
|
|
- // RedisDbconn.Instance.AddList("CashPersonalCreateQueue", Id.ToString());
|
|
|
- // return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
|
|
|
- // }
|
|
|
- // return Json(new AppResultJson() { Status = "-1", Info = "认证失败,请重试", Data = Obj });
|
|
|
- // }
|
|
|
-
|
|
|
- // [Authorize]
|
|
|
- // public JsonResult CashAuth2(string value)
|
|
|
- // {
|
|
|
- // value = DesDecrypt(value);
|
|
|
- // JsonData data = JsonMapper.ToObject(value);
|
|
|
- // AppResultJson result = CashAuth2Do(value);
|
|
|
- // return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
|
|
|
- // }
|
|
|
- // public AppResultJson CashAuth2Do(string value)
|
|
|
- // {
|
|
|
- // JsonData data = JsonMapper.ToObject(value);
|
|
|
- // int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
|
|
|
- // string cashCheck = RedisDbconn.Instance.Get<string>("CashPersonalAddResult:" + Id);
|
|
|
- // if(string.IsNullOrEmpty(cashCheck))
|
|
|
- // {
|
|
|
- // return new AppResultJson() { Status = "0", Info = "" };
|
|
|
- // }
|
|
|
- // if(cashCheck != "success")
|
|
|
- // {
|
|
|
- // return new AppResultJson() { Status = "-1", Info = cashCheck };
|
|
|
- // }
|
|
|
- // string CertFrontImage = data["CertFrontImage"].ToString(); //身份证正面照
|
|
|
- // string CertReverseImage = data["CertReverseImage"].ToString(); //身份证反面照
|
|
|
- // // string BankName = data["BankName"].ToString(); //开户行全称
|
|
|
- // string SettleBankName = data["SettleBankName"].ToString(); //结算银行名称
|
|
|
- // string SettleBankCardNo = data["SettleBankCardNo"].ToString(); //结算银行卡号
|
|
|
- // string BankMobile = data["BankMobile"].ToString(); //银行预留手机号
|
|
|
- // if (string.IsNullOrEmpty(data["BankMobile"].ToString()))
|
|
|
- // {
|
|
|
- // return new AppResultJson() { Status = "-1", Info = "请填写手机号" };
|
|
|
- // }
|
|
|
- // if (data["BankMobile"].ToString().Length > 11)
|
|
|
- // {
|
|
|
- // return new AppResultJson() { Status = "-1", Info = "手机号最多11个字符" };
|
|
|
- // }
|
|
|
- // if (function.CheckMobile(data["BankMobile"].ToString()) == "")
|
|
|
- // {
|
|
|
- // return new AppResultJson() { Status = "-1", Info = "请填写正确的手机号" };
|
|
|
- // }
|
|
|
- // Dictionary<string, object> Obj = new Dictionary<string, object>();
|
|
|
- // string check = RedisDbconn.Instance.Get<string>("CashAuth:" + Id);
|
|
|
- // if (!string.IsNullOrEmpty(check))
|
|
|
- // {
|
|
|
- // return new AppResultJson() { Status = "-1", Info = "资料审核中, 请稍后再试" };
|
|
|
- // }
|
|
|
- // RedisDbconn.Instance.Set("CashAuth:" + Id, "1");
|
|
|
- // RedisDbconn.Instance.SetExpire("CashAuth:" + Id, 300);
|
|
|
- // Users query = maindb.Users.FirstOrDefault(m => m.Id == Id);
|
|
|
- // if (query != null)
|
|
|
- // {
|
|
|
- // query.SettleBankCardNo = SettleBankCardNo; //结算银行卡号
|
|
|
- // query.SettleBankName = SettleBankName; //结算银行名称
|
|
|
- // query.CertFrontImage = CertFrontImage; //身份证正面照
|
|
|
- // query.CertReverseImage = CertReverseImage; //身份证反面照
|
|
|
- // UserAuthRecord auth = maindb.UserAuthRecord.FirstOrDefault(m => m.UserId == Id);
|
|
|
- // if (auth != null)
|
|
|
- // {
|
|
|
- // auth.BankCardAccount = SettleBankCardNo; //银行卡账号
|
|
|
- // auth.BankMobile = BankMobile; //银行预留手机号码
|
|
|
- // }
|
|
|
- // maindb.SaveChanges();
|
|
|
- // return new AppResultJson() { Status = "1", Info = "", Data = Obj };
|
|
|
- // }
|
|
|
- // return new AppResultJson() { Status = "-1", Info = "认证失败,请重试" };
|
|
|
- // }
|
|
|
-
|
|
|
-
|
|
|
[Authorize]
|
|
|
public JsonResult CashAuth2(string value, string CertFrontBase64, string CertReverseBase64)
|
|
|
{
|
|
@@ -1597,9 +1268,6 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
auth.BankMobile = BankMobile; //银行预留手机号码
|
|
|
}
|
|
|
maindb.SaveChanges();
|
|
|
- RedisDbconn.Instance.Set("FrontCertImg:" + Id, CertFrontBase64, 600);
|
|
|
- RedisDbconn.Instance.Set("BackCertImg:" + Id, CertReverseBase64, 600);
|
|
|
- RedisDbconn.Instance.AddList("CashPersonalCreateQueue", Id.ToString());
|
|
|
return new AppResultJson() { Status = "1", Info = "", Data = Obj };
|
|
|
}
|
|
|
return new AppResultJson() { Status = "-1", Info = "认证失败,请重试" };
|
|
@@ -2132,7 +1800,7 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
Obj.Add("TradeTotal", TradeTotal); //总交易
|
|
|
Obj.Add("ActTotal", ActTotal); //总激活数
|
|
|
|
|
|
- List<KqProducts> products = RedisDbconn.Instance.GetList<KqProducts>("KqProducts", 1, 100);
|
|
|
+ List<KqProducts> products = new KqProductsService().List(new List<FieldItem>(), "", 1, 100);
|
|
|
List<KqProducts> productall = products.Prepend(new KqProducts()
|
|
|
{
|
|
|
Id = 0,
|
|
@@ -2391,10 +2059,11 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
JsonData data = JsonMapper.ToObject(value);
|
|
|
int UserId = int.Parse(function.CheckInt(data["UserId"].ToString())); //创客Id
|
|
|
Dictionary<string, object> Obj = new Dictionary<string, object>();
|
|
|
- int MakerTotal = maindb.Users.Count(m => m.ParentUserId == UserId); //RedisDbconn.Instance.Get<int>("TotalUser:" + UserId);
|
|
|
- int AuthCount = maindb.Users.Count(m => m.ParentUserId == UserId && m.AuthFlag == 1); //RedisDbconn.Instance.Get<int>("TotalUser:Auth:" + UserId);
|
|
|
+ int MakerTotal = maindb.Users.Count(m => m.ParentUserId == UserId);
|
|
|
+ int AuthCount = maindb.Users.Count(m => m.ParentUserId == UserId && m.AuthFlag == 1);
|
|
|
int NotAuthCount = MakerTotal - AuthCount;
|
|
|
- int ThisMonthCount = RedisDbconn.Instance.Get<int>("TotalUser:" + UserId + ":" + DateTime.Now.ToString("yyyyMM"));
|
|
|
+ DateTime start = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd") + " 00:00:00");
|
|
|
+ int ThisMonthCount = maindb.Users.Count(m => m.ParentUserId == UserId && m.AuthFlag == 1 && m.AuthDate >= start);
|
|
|
Obj.Add("MakerTotal", MakerTotal); //创客总数
|
|
|
Obj.Add("AuthCount", AuthCount); //已实名总数
|
|
|
Obj.Add("NotAuthCount", NotAuthCount); //未实名总数
|