package com.fdkankan.manage.controller; import com.fdkankan.redis.util.RedisUtil; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** * 日志管理 **/ @RestController @RequestMapping("/service/manage/operLog") public class OperLogController { @Autowired RedisUtil redisUtil; }