ControllerBase.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using CZFW.Framework.Model.ViewModel;
  2. using Microsoft.AspNetCore.Mvc;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.IO;
  6. using System.Text;
  7. using CZFW.Core;
  8. using Microsoft.AspNetCore.Http;
  9. using Newtonsoft.Json;
  10. namespace CZFW.Framework
  11. {
  12. public class ControllerBase : Controller
  13. {
  14. public ResultModel Result(bool success = true, string message = null, object data = null, string code = null)
  15. {
  16. return new ResultModel(success, message, data, code);
  17. }
  18. public ResultModel<TType> Result<TType>(bool success = true, string message = null, TType Tdata = default(TType), string code = null, int affectedRows=0)
  19. {
  20. return new ResultModel<TType>(success, message, Tdata, code, affectedRows);
  21. }
  22. public string GetBodyJson()
  23. {
  24. if (!Request.Body.CanRead)
  25. return null;
  26. using (StreamReader reader = new StreamReader(Request.Body, true))
  27. {
  28. var res = reader.ReadToEnd();
  29. return res;
  30. }
  31. }
  32. public void WriteSession(string key, object value)
  33. {
  34. var json = value.ToJson();
  35. HttpContext.Session.SetString(key, json);
  36. }
  37. public TResult GetSession<TResult>(string key)
  38. {
  39. var json = HttpContext.Session.GetString(key);
  40. if (string.IsNullOrWhiteSpace(json))
  41. return default(TResult);
  42. var res = JsonConvert.DeserializeObject<TResult>(json);
  43. return res;
  44. }
  45. }
  46. }