IntelligentRecognition/ah-jjsp-service/.svn/pristine/a7/a7feb28a8f2fe0463ee8733317e...

27 lines
539 B
Plaintext
Raw Normal View History

2024-05-24 16:09:40 +08:00
package com.sercurityControl.proteam.controller;
import com.securityControl.common.redis.service.RedisService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* 双击热备 视频 配置 控制层
*/
@RestController
@RequestMapping("/video/config")
@Slf4j
public class VideoConfigController {
@Autowired
private RedisService redisUtil;
}