27 lines
539 B
Plaintext
27 lines
539 B
Plaintext
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;
|
|
|
|
|
|
|
|
|
|
|
|
}
|