SysConstants.java 728 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package com.dragoninfo.dcuc.authweb.common;
  2. /**
  3. * @author Administrator
  4. * @date 2018/11/1
  5. */
  6. public class SysConstants {
  7. /**
  8. * 机构管理范围
  9. **/
  10. public static final String MT_ORG = "ORG";
  11. /**
  12. * 用户管理范围
  13. **/
  14. public static final String MT_USER = "USER";
  15. /**
  16. * 授权管理范围
  17. **/
  18. public static final String MT_APP = "APP";
  19. /**
  20. * 管理员管理范围
  21. **/
  22. public static final String MT_MGE = "MGE";
  23. /**
  24. * 临时管理范围
  25. **/
  26. public static final String MT_TEMP = "TEMP";
  27. /**
  28. * 列表导出的最大数量
  29. */
  30. public static final int EXPORT_NUMBER_MAX = 1000;
  31. private SysConstants() {
  32. }
  33. }