当前位置:   article > 正文

JsonResult工具类代码块_c#jsonresult工具类

c#jsonresult工具类
  1. import lombok.Getter;
  2. import lombok.Setter;
  3. /**
  4. * @Author: July
  5. * @Description:
  6. * @Date Created in 2021-10-18 11:06
  7. * @Modified By:
  8. */
  9. @Getter
  10. @Setter
  11. public class JsonResult<T> {
  12. /**
  13. * 成功
  14. */
  15. public static final int SUCCESS = 200;
  16. /**
  17. * 没有登录
  18. */
  19. public static final int NOT_LOGIN = 400;
  20. /**
  21. * 发生异常
  22. */
  23. public static final int EXCEPTION = 401;
  24. /**
  25. * 系统错误
  26. */
  27. public static final int SYS_ERROR = 402;
  28. /**
  29. * 参数错误
  30. */
  31. public static final int PARAMS_ERROR = 403;
  32. /**
  33. * 不支持或已经废弃
  34. */
  35. public static final int NOT_SUPPORTED = 410;
  36. /**
  37. * AuthCode错误
  38. */
  39. public static final int INVALID_AUTHCODE = 444;
  40. /**
  41. * 太频繁的调用
  42. */
  43. public static final int TOO_FREQUENT = 445;
  44. /**
  45. * 未知的错误
  46. */
  47. public static final int UNKNOWN_ERROR = 499;
  48. private int
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/运维做开发/article/detail/861727
推荐阅读
  

闽ICP备14008679号