Constants.java 553 B

123456789101112131415161718192021222324
  1. package com.edu.common.constant;
  2. /**
  3. * @author KangJellen
  4. * @time 2017年5月2日10:48:54
  5. */
  6. public interface Constants {
  7. /**
  8. * OOO系统
  9. * OOO△△xxx
  10. * 中间三位△△预留,默认为00
  11. * 后三位xxx表示错误码
  12. * 后三位中xxx,001-099预留为公司统一使用的编码
  13. */
  14. public interface demo{
  15. // 系统异常(未定义、未捕获、未处理的统一放这里)
  16. public static final String ERROR_CODE01 = "01000001";
  17. public static final String ERROR_MSG01 = "系统错误,请联系管理员!";
  18. }
  19. }