|
@@ -37,7 +37,6 @@ public class MajorExamineController extends BaseController {
|
|
|
* 查询考期列表
|
|
|
*/
|
|
|
@ApiOperation("查询考期列表")
|
|
|
- @PreAuthorize("@ss.hasPermi('course:examine:list')")
|
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo<MajorExamineVo> list(MajorExamineQueryBo bo) {
|
|
|
startPage();
|
|
@@ -50,7 +49,6 @@ public class MajorExamineController extends BaseController {
|
|
|
* 获取考期详细信息
|
|
|
*/
|
|
|
@ApiOperation("获取考期详细信息")
|
|
|
- @PreAuthorize("@ss.hasPermi('course:examine:query')")
|
|
|
@GetMapping("/{id}")
|
|
|
public AjaxResult<MajorExamineVo> getInfo(@PathVariable("id" ) Long id) {
|
|
|
return AjaxResult.success(iMajorExamineService.queryById(id));
|