package com.terra.system.service.all; import com.terra.common.service.RedisService; import com.terra.system.service.sys.BlacklistService; import com.terra.system.service.sys.TokenService; import javax.annotation.Resource; import org.springframework.stereotype.Service; /** * 系统服务类 * @author WWW */ @Service public class SysService { @Resource public TokenService tokenService; @Resource public RedisService redisService; @Resource public PermsService permsService; @Resource public BlacklistService blacklistService; }