MerchantDepositOrderController.cs 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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 MerchantDepositOrderController : BaseController
  17. // {
  18. // public MerchantDepositOrderController(IHttpContextAccessor accessor, ILogger<BaseController> logger, IOptions<Setting> setting) : base(accessor, logger, setting)
  19. // {
  20. // }
  21. // #region 商户激活-确认支付
  22. // [Authorize]
  23. // public JsonResult Pay(string value)
  24. // {
  25. // value = DesDecrypt(value);
  26. // JsonData data = JsonMapper.ToObject(value);
  27. // AppResultJson result = PayDo(value);
  28. // return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
  29. // }
  30. // private AppResultJson PayDo(string value)
  31. // {
  32. // JsonData data = JsonMapper.ToObject(value);
  33. // int MerchantId = int.Parse(function.CheckInt(data["MerchantId"].ToString())); //商户Id
  34. // string PayMode = data["PayMode"].ToString(); //支付方式(1 支付宝)
  35. // if (string.IsNullOrEmpty(data["MerchantId"].ToString()))
  36. // {
  37. // return new AppResultJson() { Status = "-1", Info = "请填写商户Id" };
  38. // }
  39. // if (!function.IsInt(data["MerchantId"].ToString()))
  40. // {
  41. // return new AppResultJson() { Status = "-1", Info = "请填写正确的商户Id" };
  42. // }
  43. // Dictionary<string, object> Obj = new Dictionary<string, object>();
  44. // MerchantDepositOrder query = new MerchantDepositOrder();
  45. // Dictionary<string, object> fields = new Dictionary<string, object>();
  46. // fields.Add("create_date", DateTime.Now); //创建时间
  47. // fields.Add("update_date", DateTime.Now); //修改时间
  48. // fields.Add("MerchantId", MerchantId); //商户Id
  49. // AppResultJson resultJson = MerchantDepositOrderService.Add(fields, false);
  50. // return new AppResultJson() { Status = "1", Info = "", Data = Obj };
  51. // }
  52. // #endregion
  53. // #region 商户激活-确认订单
  54. // [Authorize]
  55. // public JsonResult ConfirmOrder(string value)
  56. // {
  57. // value = PublicFunction.DesDecrypt(value); ;
  58. // JsonData data = JsonMapper.ToObject(value);
  59. // AppResultJson result = ConfirmOrderDo(value);
  60. // return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
  61. // }
  62. // private AppResultJson ConfirmOrderDo(string value)
  63. // {
  64. // JsonData data = JsonMapper.ToObject(value);
  65. // int MerchantId = int.Parse(function.CheckInt(data["MerchantId"].ToString())); //商户Id
  66. // if (string.IsNullOrEmpty(data["MerchantId"].ToString()))
  67. // {
  68. // return new AppResultJson() { Status = "-1", Info = "请填写商户Id" };
  69. // }
  70. // if (!function.IsInt(data["MerchantId"].ToString()))
  71. // {
  72. // return new AppResultJson() { Status = "-1", Info = "请填写正确的商户Id" };
  73. // }
  74. // Dictionary<string, object> Obj = new Dictionary<string, object>();
  75. // MerchantDepositOrder query = new MerchantDepositOrder();
  76. // Dictionary<string, object> fields = new Dictionary<string, object>();
  77. // fields.Add("create_date", DateTime.Now); //创建时间
  78. // fields.Add("update_date", DateTime.Now); //修改时间
  79. // fields.Add("MerchantId", MerchantId); //商户Id
  80. // AppResultJson resultJson = MerchantDepositOrderService.Add(fields, false);
  81. // Obj.Add("id", query.Id); //id
  82. // Obj.Add("create_date", query.CreateDate); //创建时间
  83. // return new AppResultJson() { Status = "1", Info = "", Data = Obj };
  84. // }
  85. // #endregion
  86. // #region 已激活商户-活动时间
  87. // [Authorize]
  88. // public JsonResult Info(string value)
  89. // {
  90. // value = PublicFunction.DesDecrypt(value); ;
  91. // JsonData data = JsonMapper.ToObject(value);
  92. // Dictionary<string, object> Obj = InfoDo(value);
  93. // return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
  94. // }
  95. // private Dictionary<string, object> InfoDo(string value)
  96. // {
  97. // JsonData data = JsonMapper.ToObject(value);
  98. // int MerchantId = int.Parse(function.CheckInt(data["MerchantId"].ToString())); //商户Id
  99. // Dictionary<string, object> Obj = new Dictionary<string, object>();
  100. // MerchantDepositOrder query = new MerchantDepositOrder();
  101. // query = MerchantDepositOrderService.Query(id);
  102. // Obj.Add("StartDate", ""); //考核开始时间
  103. // Obj.Add("EndDate", ""); //考核结束时间
  104. // return Obj;
  105. // }
  106. // #endregion
  107. // #region 检查签名是否合法,合法返回1,不合法返回提示信息
  108. // /// <summary>
  109. // /// 检查签名是否合法,合法返回1,不合法返回提示信息
  110. // /// </summary>
  111. // /// <param name="value">请求的参数(json字符串)</param>
  112. // /// <param name="signField">要签名的字段</param>
  113. // /// <returns></returns>
  114. // private string CheckSign(string value, string[] signField)
  115. // {
  116. // JsonData json = JsonMapper.ToObject(value);
  117. // Dictionary<string, string> dic = new Dictionary<string, string>();
  118. // for (int i = 0; i < signField.Length; i++)
  119. // {
  120. // dic.Add(signField[i], json[signField[i]].ToString());
  121. // }
  122. // string sign = json["sign"].ToString(); //客户端签名字符串
  123. // return new Sign().sign(dic, sign);
  124. // }
  125. // #endregion
  126. // }
  127. // }