OpenBankTableController.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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 OpenBankTableController : BaseController
  17. {
  18. public OpenBankTableController(IHttpContextAccessor accessor, ILogger<BaseController> logger, IOptions<Setting> setting) : base(accessor, logger, setting)
  19. {
  20. }
  21. #region 创客-首页-开户行查询
  22. [Authorize]
  23. public JsonResult List(string value)
  24. {
  25. value = DesDecrypt(value);
  26. JsonData data = JsonMapper.ToObject(value);
  27. List<Dictionary<string, object>> dataList = ListDo(value);
  28. return Json(new AppResultJson() { Status = "1", Info = "", Data = dataList });
  29. }
  30. public List<Dictionary<string, object>> ListDo(string value)
  31. {
  32. JsonData data = JsonMapper.ToObject(value);
  33. string SearchKey = data["SearchKey"].ToString(); //搜索关键词
  34. int PageSize = int.Parse(function.CheckInt(data["PageSize"].ToString()));
  35. int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
  36. List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
  37. IQueryable<OpenBankTable> query = maindb.OpenBankTable;
  38. if(!string.IsNullOrEmpty(SearchKey))
  39. {
  40. query = query.Where(m => m.BankName.Contains(SearchKey));
  41. }
  42. query = query.Take(PageSize);
  43. foreach (var subdata in query.ToList())
  44. {
  45. Dictionary<string, object> curData = new Dictionary<string, object>();
  46. curData.Add("BankName", subdata.BankName); //开户行名称
  47. curData.Add("BankCode", subdata.BankCode); //联行号
  48. dataList.Add(curData);
  49. }
  50. return dataList;
  51. }
  52. #endregion
  53. #region 检查签名是否合法,合法返回1,不合法返回提示信息
  54. /// <summary>
  55. /// 检查签名是否合法,合法返回1,不合法返回提示信息
  56. /// </summary>
  57. /// <param name="value">请求的参数(json字符串)</param>
  58. /// <param name="signField">要签名的字段</param>
  59. /// <returns></returns>
  60. private string CheckSign(string value, string[] signField)
  61. {
  62. JsonData json = JsonMapper.ToObject(value);
  63. Dictionary<string, string> dic = new Dictionary<string, string>();
  64. for (int i = 0; i < signField.Length; i++)
  65. {
  66. dic.Add(signField[i], json[signField[i]].ToString());
  67. }
  68. string sign = json["sign"].ToString(); //客户端签名字符串
  69. return new Sign().sign(dic, sign);
  70. }
  71. #endregion
  72. }
  73. }