sgj
5 天以前 824d4e6be22a1d101897bf1be575bb5e3ed33845
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.fzzy.sys.controller.security;
 
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
 
/**
 * @Description 安防controller层
 * @Author CZT
 * @Date 2025/12/9 9:12
 */
@Slf4j
@Controller
@RequestMapping("/security")
public class SecurityController {
 
    private static final String prefix = "security";
 
 
 
 
 
 
 
}