package com.ruoyi.web.controller.info; import java.util.List; import javax.servlet.http.HttpServletResponse; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import com.ruoyi.common.annotation.Log; import com.ruoyi.common.core.controller.BaseController; import com.ruoyi.common.core.domain.AjaxResult; import com.ruoyi.common.enums.BusinessType; import com.ruoyi.system.domain.StudentInfo; import com.ruoyi.system.service.IStudentInfoService; import com.ruoyi.common.utils.poi.ExcelUtil; import com.ruoyi.common.core.page.TableDataInfo; /** * 学生档案信息Controller * * @author ruoyi * @date 2023-07-21 */ @RestController @RequestMapping("/student/info") public class StudentInfoController extends BaseController { @Autowired private IStudentInfoService studentInfoService; /** * 查询学生档案信息列表 */ @PreAuthorize("@ss.hasPermi('student:info:list')") @GetMapping("/list") public TableDataInfo list(StudentInfo studentInfo) { startPage(); List list = studentInfoService.selectStudentInfoList(studentInfo); return getDataTable(list); } /** * 导出学生档案信息列表 */ @PreAuthorize("@ss.hasPermi('student:info:export')") @Log(title = "学生档案信息", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, StudentInfo studentInfo) { List list = studentInfoService.selectStudentInfoList(studentInfo); ExcelUtil util = new ExcelUtil(StudentInfo.class); util.exportExcel(response, list, "学生档案信息数据"); } /** * 获取学生档案信息详细信息 */ @PreAuthorize("@ss.hasPermi('student:info:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return success(studentInfoService.selectStudentInfoById(id)); } /** * 新增学生档案信息 */ @PreAuthorize("@ss.hasPermi('student:info:add')") @Log(title = "学生档案信息", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody StudentInfo studentInfo) { return studentInfoService.insertStudentInfo(studentInfo); } /** * 修改学生档案信息 */ @PreAuthorize("@ss.hasPermi('student:info:edit')") @Log(title = "学生档案信息", businessType = BusinessType.UPDATE) @PostMapping(value = "/put") public AjaxResult edit(@RequestBody StudentInfo studentInfo) { return toAjax(studentInfoService.updateStudentInfo(studentInfo)); } /** * 删除学生档案信息 */ @PreAuthorize("@ss.hasPermi('student:info:remove')") @Log(title = "学生档案信息", businessType = BusinessType.DELETE) @GetMapping("/delete/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { return toAjax(studentInfoService.deleteStudentInfoByIds(ids)); } }