HomeController.cs 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. using System.Collections.Generic;
  2. using Microsoft.AspNetCore.Mvc;
  3. using Microsoft.Extensions.Logging;
  4. using MySystem.MainModels;
  5. using System.Linq;
  6. using Library;
  7. using LitJson;
  8. namespace MySystem.Controllers
  9. {
  10. public class HomeController : Controller
  11. {
  12. private readonly ILogger<HomeController> _logger;
  13. public HomeController(ILogger<HomeController> logger)
  14. {
  15. _logger = logger;
  16. }
  17. public IActionResult Index()
  18. {
  19. return View();
  20. }
  21. public IActionResult Error()
  22. {
  23. string isapi = Request.Headers["Api"].ToString();
  24. if (isapi != "1")
  25. {
  26. if (Response.StatusCode == 500)
  27. {
  28. return Redirect("/public/errpage/pc/500.html");
  29. }
  30. else if (Response.StatusCode == 502)
  31. {
  32. return Redirect("/public/errpage/pc/502.html");
  33. }
  34. else if (Response.StatusCode == 404)
  35. {
  36. return Redirect("/public/errpage/pc/404.html");
  37. }
  38. else if (Response.StatusCode == 401)
  39. {
  40. return Content("401");
  41. }
  42. }
  43. return View();
  44. }
  45. public string test()
  46. {
  47. string result = "";
  48. // List<ReceiverList> Receivers = new List<ReceiverList>();
  49. // Receivers.Add(new ReceiverList()
  50. // {
  51. // type = "MERCHANT_ID", //分账接收方类型
  52. // account = "1611167423", //分账接收方账号
  53. // amount = 1, //分账金额
  54. // description = "服务费", //分账描述
  55. // });
  56. // Receivers.Add(new ReceiverList()
  57. // {
  58. // type = "PERSONAL_OPENID", //分账接收方类型
  59. // account = "ooDpv5LkCKEguE-LMZO-rSV4TDpk", //分账接收方账号
  60. // amount = 1, //分账金额
  61. // description = "优惠", //分账描述
  62. // });
  63. // result = new WeChatFunction().ProfitShare("1645266943", "4200001846202306021274142861", "2023060214014405449699901", Receivers);
  64. // result = new WeChatFunction().AddReceive("1645266943", "PERSONAL_OPENID", "ooDpv5LkCKEguE-LMZO-rSV4TDpk", "", "USER");
  65. // result = new WeChatFunction().QueryProfitShare("1645266943", "4200001815202306025662773463", "2023060213335030713572885");
  66. result = new WeChatFunction().Unfreeze("1645266943", "4200001846202306021274142861", "2023060214014405449699901", "结算");
  67. return result;
  68. }
  69. }
  70. }