package com.moon.server.service.all; import com.moon.server.service.sys.BlacklistService; import com.moon.server.service.sys.TokenService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service @SuppressWarnings("ALL") public class SysService { @Autowired public TokenService tokenService; @Autowired public RedisService redisService; @Autowired public PermsService permsService; @Autowired public BlacklistService blacklistService; }