| | |
| | | package com.ruoyi.system.controller; |
| | | |
| | | import java.util.*; |
| | | import java.util.stream.Collectors; |
| | | |
| | | import com.ruoyi.common.utils.StringUtils; |
| | | import com.ruoyi.system.mapper.SysStudentMapper; |
| | | 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.annotation.RepeatSubmit; |
| | | 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.SysStudent; |
| | | import com.ruoyi.system.service.ISysStudentService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | import com.ruoyi.common.enums.BusinessType; |
| | | import com.ruoyi.common.utils.StringUtils; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.system.domain.SysStudent; |
| | | import com.ruoyi.system.mapper.SysStudentMapper; |
| | | import com.ruoyi.system.service.ISysStudentService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.*; |
| | | import java.util.stream.Collectors; |
| | | |
| | | /** |
| | | * 学生信息Controller |
| | |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:student:edit')") |
| | | @Log(title = "学生信息", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | @PostMapping("/edit") |
| | | @RepeatSubmit |
| | | public AjaxResult edit(@RequestBody SysStudent sysStudent) { |
| | | return toAjax(sysStudentService.updateById(sysStudent)); |
| | |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:student:remove')") |
| | | @Log(title = "学生信息", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{studentIds}") |
| | | @GetMapping("/remove/{studentIds}") |
| | | public AjaxResult remove(@PathVariable Long[] studentIds) { |
| | | return toAjax(sysStudentService.removeByIds(Arrays.asList(studentIds))); |
| | | } |