You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
860 B
31 lines
860 B
package com.ruoyi.web.controller.upload; |
|
|
|
import com.ruoyi.common.core.page.TableDataInfo; |
|
import com.ruoyi.system.domain.SysConfig; |
|
import org.springframework.security.access.prepost.PreAuthorize; |
|
import org.springframework.web.bind.annotation.GetMapping; |
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
import java.util.List; |
|
|
|
import static com.ruoyi.common.utils.PageUtils.startPage; |
|
|
|
@RestController |
|
@RequestMapping("/videos") |
|
public class VideosController { |
|
|
|
|
|
|
|
/** |
|
* 获取参数配置列表 |
|
*/ |
|
/*@PreAuthorize("@ss.hasPermi('videos:list')") |
|
@GetMapping("/list") |
|
public TableDataInfo list(SysConfig config) |
|
{ |
|
startPage(); |
|
List<SysConfig> list = configService.selectConfigList(config); |
|
return getDataTable(list); |
|
}*/ |
|
}
|
|
|