package com.schoolinout.web.controller.system; import com.schoolinout.common.annotation.Log; import com.schoolinout.common.core.controller.BaseController; import com.schoolinout.common.core.domain.AjaxResult; import com.schoolinout.common.core.page.TableDataInfo; import com.schoolinout.common.enums.BusinessType; import com.schoolinout.common.utils.poi.ExcelUtil; import com.schoolinout.system.domain.Student; import com.schoolinout.system.service.IStudentService; import io.swagger.v3.oas.annotations.tags.Tag; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.web.bind.annotation.*; import javax.servlet.http.HttpServletResponse; import java.util.List; /** * 学生管理Controller * * @author sakura * @date 2024-01-03 */ @Tag(name = "学生管理接口") @RestController @RequestMapping("/system/student") public class StudentController extends BaseController { @Autowired private IStudentService studentService; @GetMapping("/list/all") public AjaxResult getAll(Student student) { return success(studentService.listAll(student)); } /** * 查询学生管理列表 */ @PreAuthorize("@ss.hasPermi('system:student:list')") @GetMapping("/list") public TableDataInfo list(Student student) { startPage(); List list = studentService.selectStudentList(student); return getDataTable(list); } /** * 导出学生管理列表 */ @PreAuthorize("@ss.hasPermi('system:student:export')") @Log(title = "学生管理", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, Student student) { List list = studentService.selectStudentList(student); ExcelUtil util = new ExcelUtil(Student.class); util.exportExcel(response, list, "学生管理数据"); } /** * 获取学生管理详细信息 */ @PreAuthorize("@ss.hasPermi('system:student:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return success(studentService.selectStudentById(id)); } /** * 新增学生管理 */ @PreAuthorize("@ss.hasPermi('system:student:add')") @Log(title = "学生管理", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody Student student) { return toAjax(studentService.insertStudent(student)); } /** * 修改学生管理 */ @PreAuthorize("@ss.hasPermi('system:student:edit')") @Log(title = "学生管理", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody Student student) { return toAjax(studentService.updateStudent(student)); } /** * 删除学生管理 */ @PreAuthorize("@ss.hasPermi('system:student:remove')") @Log(title = "学生管理", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { return toAjax(studentService.deleteStudentByIds(ids)); } }