MerchantDepositBackController.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. // using System;
  2. // using System.Collections.Generic;
  3. // using System.Linq;
  4. // using Microsoft.AspNetCore.Mvc;
  5. // using Microsoft.AspNetCore.Http;
  6. // using Microsoft.Extensions.Logging;
  7. // using Microsoft.Extensions.Options;
  8. // using Microsoft.AspNetCore.Authorization;
  9. // using MySystem.MainModels;
  10. // using LitJson;
  11. // using Library;
  12. // namespace MySystem.Areas.Api.Controllers.v1
  13. // {
  14. // [Area("Api")]
  15. // [Route("Api/v1/[controller]/[action]")]
  16. // public class MerchantDepositBackController : BaseController
  17. // {
  18. // public MerchantDepositBackController(IHttpContextAccessor accessor, ILogger<BaseController> logger, IOptions<Setting> setting) : base(accessor, logger, setting)
  19. // {
  20. // }
  21. // #region 商户激活-商户服务费退还
  22. // [Authorize]
  23. // public JsonResult AddMerchantDepositBack(string value)
  24. // {
  25. // value = DesDecrypt(value);
  26. // JsonData data = JsonMapper.ToObject(value);
  27. // AppResultJson result = AddMerchantDepositBackDo(value);
  28. // return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
  29. // }
  30. // private AppResultJson AddMerchantDepositBackDo(string value)
  31. // {
  32. // JsonData data = JsonMapper.ToObject(value);
  33. // int MerchantId = int.Parse(function.CheckInt(data["MerchantId"].ToString())); //商户Id
  34. // int ReturnWay = int.Parse(function.CheckInt(data["ReturnWay"].ToString())); //退还方式
  35. // string MobileCode = data["MobileCode"].ToString(); //短信验证码
  36. // string ReturnNo = data["ReturnNo"].ToString(); //退还账号
  37. // if (string.IsNullOrEmpty(data["MerchantId"].ToString()))
  38. // {
  39. // return new AppResultJson() { Status = "-1", Info = "请填写商户Id" };
  40. // }
  41. // if (!function.IsInt(data["MerchantId"].ToString()))
  42. // {
  43. // return new AppResultJson() { Status = "-1", Info = "请填写正确的商户Id" };
  44. // }
  45. // if (string.IsNullOrEmpty(data["ReturnWay"].ToString()))
  46. // {
  47. // return new AppResultJson() { Status = "-1", Info = "请填写退还方式" };
  48. // }
  49. // if (!function.IsInt(data["ReturnWay"].ToString()))
  50. // {
  51. // return new AppResultJson() { Status = "-1", Info = "请填写正确的退还方式" };
  52. // }
  53. // MobileCodeCheck mobilecheck = RedisDbconn.Instance.Get<MobileCodeCheck>("MobileCodeCheck:手机号");
  54. // if (mobilecheck == null)
  55. // {
  56. // return new AppResultJson() { Status = "-1", Info = "短信验证码不正确" };
  57. // }
  58. // if (mobilecheck.CheckCode != MobileCode)
  59. // {
  60. // return new AppResultJson() { Status = "-1", Info = "短信验证码不正确" };
  61. // }
  62. // RedisDbconn.Instance.Clear("MobileCodeCheck:手机号");
  63. // Dictionary<string, object> Obj = new Dictionary<string, object>();
  64. // MerchantDepositBack query = new MerchantDepositBack();
  65. // Dictionary<string, object> fields = new Dictionary<string, object>();
  66. // fields.Add("create_date", DateTime.Now); //创建时间
  67. // fields.Add("update_date", DateTime.Now); //修改时间
  68. // fields.Add("MerchantId", MerchantId); //商户Id
  69. // fields.Add("ReturnWay", ReturnWay); //退还方式
  70. // AppResultJson resultJson = MerchantDepositBackService.Add(fields, false);
  71. // return new AppResultJson() { Status = "1", Info = "", Data = Obj };
  72. // }
  73. // #endregion
  74. // #region 检查签名是否合法,合法返回1,不合法返回提示信息
  75. // /// <summary>
  76. // /// 检查签名是否合法,合法返回1,不合法返回提示信息
  77. // /// </summary>
  78. // /// <param name="value">请求的参数(json字符串)</param>
  79. // /// <param name="signField">要签名的字段</param>
  80. // /// <returns></returns>
  81. // private string CheckSign(string value, string[] signField)
  82. // {
  83. // JsonData json = JsonMapper.ToObject(value);
  84. // Dictionary<string, string> dic = new Dictionary<string, string>();
  85. // for (int i = 0; i < signField.Length; i++)
  86. // {
  87. // dic.Add(signField[i], json[signField[i]].ToString());
  88. // }
  89. // string sign = json["sign"].ToString(); //客户端签名字符串
  90. // return new Sign().sign(dic, sign);
  91. // }
  92. // #endregion
  93. // }
  94. // }