柯桥增值式服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
523B

  1. package com.ningdatech.kqapi.common.constant;
  2. import cn.hutool.core.text.StrPool;
  3. /**
  4. * 默认值
  5. *
  6. * @author PoffyZhang
  7. */
  8. public interface DefValConst {
  9. /**
  10. * 默认的根节点path
  11. */
  12. String ROOT_PATH = StrPool.COMMA;
  13. /**
  14. * 默认树层级
  15. */
  16. Integer TREE_GRADE = 0;
  17. /**
  18. * 默认的父id
  19. */
  20. Long PARENT_ID = 0L;
  21. /**
  22. * 默认的排序
  23. */
  24. Integer SORT_VALUE = 0;
  25. /**
  26. * 字典占位符
  27. */
  28. String DICT_PLACEHOLDER = "###";
  29. }