TransConstant.java 475 B

123456789101112131415161718192021222324252627282930
  1. package com.ruoyi.common.constant;
  2. /**
  3. * 翻译常量
  4. *
  5. * @author Lion Li
  6. */
  7. public interface TransConstant {
  8. /**
  9. * 用户id转账号
  10. */
  11. String USER_ID_TO_NAME = "user_id_to_name";
  12. /**
  13. * 部门id转名称
  14. */
  15. String DEPT_ID_TO_NAME = "dept_id_to_name";
  16. /**
  17. * 字典type转label
  18. */
  19. String DICT_TYPE_TO_LABEL = "dict_type_to_label";
  20. /**
  21. * ossId转url
  22. */
  23. String OSS_ID_TO_URL = "oss_id_to_url";
  24. }