MagicValue.java 463 B

1234567891011121314151617181920212223242526272829303132
  1. package com.wtkj.config;
  2. /**
  3. * @author Blizzard
  4. * @create at 2023-09-14 09:17
  5. * @describe
  6. */
  7. public interface MagicValue {
  8. /**
  9. * 业主机构管理员
  10. */
  11. String DEPT_ADMIN = "deptAdmin";
  12. /**
  13. * 服务机构管理员
  14. */
  15. String STAFF_ADMIN = "staff_admin";
  16. /**
  17. * 服务机构次级管理员
  18. */
  19. String STAFF_SECOND_ADMIN = "staff_second_admin";
  20. String STAFF_USER = "staff_user";
  21. Integer ZERO = 0;
  22. Integer ONE = 1;
  23. Integer TWO = 2;
  24. }