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;
|
|
/**
|
* 系统服务类
|
* @author WWW
|
*/
|
@Service
|
public class SysService {
|
@Autowired
|
public TokenService tokenService;
|
|
@Autowired
|
public RedisService redisService;
|
|
@Autowired
|
public PermsService permsService;
|
|
@Autowired
|
public BlacklistService blacklistService;
|
}
|