SystemConstant.java 476 B

12345678910111213141516171819202122
  1. package com.ydtech.constants.sys;
  2. import com.ydtech.modules.admin.constants.RoleConstants;
  3. import com.ydtech.modules.admin.model.SysUser;
  4. public class SystemConstant {
  5. private SystemConstant() {
  6. throw new IllegalStateException("Utility class");
  7. }
  8. protected static final String[] SYS_ROLE_TEAM_LEADER = {
  9. RoleConstants.R01.getCode(),
  10. };
  11. public static String[] getSysRoleTeamLeader(){
  12. return SYS_ROLE_TEAM_LEADER;
  13. }
  14. }