package com.lf.server.service.all; import com.lf.server.service.sys.BlacklistService; import com.lf.server.service.sys.TokenService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; /** * 系统服务类 * @author WWW */ @Service public class SysService { @Autowired public TokenService tokenService; @Autowired public RedisService redisService; @Autowired public PermsService permsService; @Autowired public BlacklistService blacklistService; }