| | |
| | | import com.ruoyi.device.camera.service.ICameraSdkService;
|
| | | import com.ruoyi.media.service.IMediaService;
|
| | | import com.ruoyi.media.service.impl.MediaServiceImpl;
|
| | | import io.swagger.annotations.Api;
|
| | | import io.swagger.annotations.ApiOperation;
|
| | | import org.springframework.security.access.prepost.PreAuthorize;
|
| | | import org.springframework.beans.factory.annotation.Autowired;
|
| | | import org.springframework.web.bind.annotation.GetMapping;
|
| | |
| | | * @author ard
|
| | | * @date 2023-08-29
|
| | | */
|
| | | @Api(tags = "流媒体管理")
|
| | | @RestController
|
| | | @RequestMapping("/vtdu/media")
|
| | | public class VtduController extends BaseController {
|
| | |
| | | /**
|
| | | * 获取流媒体管理详细信息
|
| | | */
|
| | | @ApiOperation(value = "获取流媒体管理详细信息")
|
| | | @PreAuthorize("@ss.hasPermi('vtdu:media:query')")
|
| | | @GetMapping(value = "/{name}")
|
| | | public AjaxResult getInfo(@PathVariable("name") String name) {
|