Constants.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package com.ruoyi.common.constant;
  2. /**
  3. * 通用常量信息
  4. *
  5. * @author ruoyi
  6. */
  7. public class Constants
  8. {
  9. /**
  10. * UTF-8 字符集
  11. */
  12. public static final String UTF8 = "UTF-8";
  13. /**
  14. * 通用成功标识
  15. */
  16. public static final String SUCCESS = "0";
  17. /**
  18. * 通用失败标识
  19. */
  20. public static final String FAIL = "1";
  21. /**
  22. * 登录成功
  23. */
  24. public static final String LOGIN_SUCCESS = "Success";
  25. /**
  26. * 注销
  27. */
  28. public static final String LOGOUT = "Logout";
  29. /**
  30. * 登录失败
  31. */
  32. public static final String LOGIN_FAIL = "Error";
  33. /**
  34. * 当前记录起始索引
  35. */
  36. public static final String PAGE_NUM = "pageNum";
  37. /**
  38. * 每页显示记录数
  39. */
  40. public static final String PAGE_SIZE = "pageSize";
  41. /**
  42. * 排序列
  43. */
  44. public static final String ORDER_BY_COLUMN = "orderByColumn";
  45. /**
  46. * 排序的方向 "desc" 或者 "asc".
  47. */
  48. public static final String IS_ASC = "isAsc";
  49. /**
  50. * 资源映射路径 前缀
  51. */
  52. public static final String RESOURCE_PREFIX = "/profile";
  53. }