| 123456789101112131415161718192021222324252627 |
- package com.ydtech.constants.sys;
- import com.ydtech.modules.admin.constants.RoleConstants;
- import com.ydtech.modules.admin.model.SysUser;
- public class SystemConstant {
- private SystemConstant() {
- throw new IllegalStateException("Utility class");
- }
- protected static final String[] SYS_ROLE_TEAM_LEADER = {
- RoleConstants.R01.getCode(),
- RoleConstants.R15.getCode(),
- RoleConstants.R16.getCode(),
- RoleConstants.R17.getCode(),
- RoleConstants.R18.getCode(),
- RoleConstants.R21.getCode()
- };
- public static String[] getSysRoleTeamLeader(){
- return SYS_ROLE_TEAM_LEADER;
- }
- }
|