mitao
2025-03-19 2e1a0221d8508d6979f045ae9f302ebe20e9341d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.web.controller.api;
 
import com.ruoyi.system.service.impl.ScreenService;
import io.swagger.annotations.Api;
import lombok.RequiredArgsConstructor;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * @author mitao
 * @date 2025/3/19
 */
@Api(tags = {"大屏相关接口"})
@RestController
@RequestMapping("/screen")
@RequiredArgsConstructor
public class ScreenController {
    private final ScreenService screenService;
}