|
@@ -1,12 +1,22 @@
|
|
|
package com.ruoyi.web.controller.student;
|
|
|
|
|
|
import java.io.IOException;
|
|
|
+import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
|
|
|
import com.ruoyi.common.core.domain.entity.SysUser;
|
|
|
import com.ruoyi.common.utils.SecurityUtils;
|
|
|
+import com.ruoyi.common.utils.bean.BeanUtils;
|
|
|
import com.ruoyi.system.domain.StuBaseInfo;
|
|
|
+import com.ruoyi.system.domain.StuClass;
|
|
|
+import com.ruoyi.system.domain.StuRoom;
|
|
|
+import com.ruoyi.system.domain.vo.FinanceExportVo;
|
|
|
+import com.ruoyi.system.domain.vo.PaymentInfoVo;
|
|
|
+import com.ruoyi.system.domain.vo.RegisterInfoVo;
|
|
|
+import com.ruoyi.system.domain.vo.StudentManagerVo;
|
|
|
import com.ruoyi.system.service.IStuBaseInfoService;
|
|
|
+import com.ruoyi.system.service.IStuClassService;
|
|
|
+import com.ruoyi.system.service.IStuRoomService;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
@@ -42,6 +52,10 @@ public class StuBaseInfoController extends BaseController
|
|
|
{
|
|
|
@Autowired
|
|
|
private IStuBaseInfoService stuBaseInfoService;
|
|
|
+ @Autowired
|
|
|
+ private IStuRoomService stuRoomService;
|
|
|
+ @Autowired
|
|
|
+ private IStuClassService stuClassService;
|
|
|
|
|
|
/**
|
|
|
* 查询所有学生列表
|
|
@@ -213,6 +227,25 @@ public class StuBaseInfoController extends BaseController
|
|
|
return toAjax(stuBaseInfoService.deleteStuBaseInfoByIds(ids));
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 学生退学
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('student:base:exit')")
|
|
|
+ @Log(title = "学生管理", businessType = BusinessType.UPDATE)
|
|
|
+ @PutMapping("/exit/{ids}")
|
|
|
+ @ApiOperation("学生退学")
|
|
|
+ public AjaxResult exit(@PathVariable Long[] ids)
|
|
|
+ {
|
|
|
+ return toAjax(stuBaseInfoService.dropOutOfSchool(ids));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 基础信息导入
|
|
|
+ * @param file
|
|
|
+ * @param updateSupport
|
|
|
+ * @return
|
|
|
+ * @throws Exception
|
|
|
+ */
|
|
|
@Log(title = "学生管理", businessType = BusinessType.IMPORT)
|
|
|
@PreAuthorize("@ss.hasPermi('student:base:import')")
|
|
|
@PostMapping("/importData")
|
|
@@ -229,7 +262,125 @@ public class StuBaseInfoController extends BaseController
|
|
|
@ApiOperation(value = "导入模板下载")
|
|
|
public AjaxResult importTemplate(HttpServletResponse response) throws IOException {
|
|
|
ExcelUtil<StuBaseInfo> util = new ExcelUtil<StuBaseInfo>(StuBaseInfo.class);
|
|
|
- return util.importTemplateExcel("学生信息");
|
|
|
+ return util.importTemplateExcel("学生基础信息导入模板");
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 报到登记信息导入
|
|
|
+ * @param response
|
|
|
+ * @return
|
|
|
+ * @throws IOException
|
|
|
+ */
|
|
|
+ @GetMapping("/importRegisterTemplate")
|
|
|
+ @ApiOperation(value = "报到登记信息导入模板下载")
|
|
|
+ public AjaxResult importRegisterTemplate(HttpServletResponse response) throws IOException {
|
|
|
+ ExcelUtil<RegisterInfoVo> util = new ExcelUtil<RegisterInfoVo>(RegisterInfoVo.class);
|
|
|
+ return util.importTemplateExcel("报到登记信息模板");
|
|
|
+ }
|
|
|
+
|
|
|
+ @Log(title = "学生管理", businessType = BusinessType.IMPORT)
|
|
|
+ @PreAuthorize("@ss.hasPermi('student:base:import')")
|
|
|
+ @PostMapping("/importRegisterData")
|
|
|
+ @ApiOperation(value = "报到登记信息导入")
|
|
|
+ public AjaxResult importRegisterData(MultipartFile file, boolean updateSupport) throws Exception {
|
|
|
+ ExcelUtil<RegisterInfoVo> util = new ExcelUtil<RegisterInfoVo>(RegisterInfoVo.class);
|
|
|
+ List<RegisterInfoVo> studentRegisterList = util.importExcel(file.getInputStream());
|
|
|
+ List<StuBaseInfo> studentList = new ArrayList<>();
|
|
|
+ for(RegisterInfoVo vo:studentRegisterList){
|
|
|
+ StuBaseInfo stu = new StuBaseInfo();
|
|
|
+ BeanUtils.copyBeanProp(stu,vo);
|
|
|
+ stu.setStudentStatus(1L);
|
|
|
+ studentList.add(stu);
|
|
|
+ }
|
|
|
+ String operName = SecurityUtils.getUsername();
|
|
|
+ String message = stuBaseInfoService.importBaseInfo(studentList, updateSupport, operName);
|
|
|
+ return AjaxResult.success(message);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 缴费信息导入
|
|
|
+ * @param response
|
|
|
+ * @return
|
|
|
+ * @throws IOException
|
|
|
+ */
|
|
|
+ @GetMapping("/importPaymentTemplate")
|
|
|
+ @ApiOperation(value = "缴费信息导入模板下载")
|
|
|
+ public AjaxResult importPaymentTemplate(HttpServletResponse response) throws IOException {
|
|
|
+ ExcelUtil<PaymentInfoVo> util = new ExcelUtil<PaymentInfoVo>(PaymentInfoVo.class);
|
|
|
+ return util.importTemplateExcel("学生缴费信息模板");
|
|
|
+ }
|
|
|
+
|
|
|
+ @Log(title = "学生管理", businessType = BusinessType.IMPORT)
|
|
|
+ @PreAuthorize("@ss.hasPermi('student:base:import')")
|
|
|
+ @PostMapping("/importPaymentData")
|
|
|
+ @ApiOperation(value = "缴费信息导入")
|
|
|
+ public AjaxResult importPaymentData(MultipartFile file, boolean updateSupport) throws Exception {
|
|
|
+ ExcelUtil<PaymentInfoVo> util = new ExcelUtil<PaymentInfoVo>(PaymentInfoVo.class);
|
|
|
+ List<PaymentInfoVo> studentPaymentList = util.importExcel(file.getInputStream());
|
|
|
+ List<StuBaseInfo> studentList = new ArrayList<>();
|
|
|
+ for(PaymentInfoVo vo:studentPaymentList){
|
|
|
+ StuBaseInfo stu = new StuBaseInfo();
|
|
|
+ stu.setStudentStatus(2L);
|
|
|
+ BeanUtils.copyBeanProp(stu,vo);
|
|
|
+ studentList.add(stu);
|
|
|
+ }
|
|
|
+ String operName = SecurityUtils.getUsername();
|
|
|
+ String message = stuBaseInfoService.importBaseInfo(studentList, updateSupport, operName);
|
|
|
+ return AjaxResult.success(message);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 学生管理信息导入
|
|
|
+ * @param response
|
|
|
+ * @return
|
|
|
+ * @throws IOException
|
|
|
+ */
|
|
|
+ @GetMapping("/importManagerTemplate")
|
|
|
+ @ApiOperation(value = "学生管理信息导入模板下载")
|
|
|
+ public AjaxResult importStudentManagerTemplate(HttpServletResponse response) throws IOException {
|
|
|
+ ExcelUtil<StudentManagerVo> util = new ExcelUtil<StudentManagerVo>(StudentManagerVo.class);
|
|
|
+ return util.importTemplateExcel("学生管理信息模板");
|
|
|
}
|
|
|
|
|
|
+ @Log(title = "学生管理", businessType = BusinessType.IMPORT)
|
|
|
+ @PreAuthorize("@ss.hasPermi('student:base:import')")
|
|
|
+ @PostMapping("/importManagerData")
|
|
|
+ @ApiOperation(value = "学生管理信息导入")
|
|
|
+ public AjaxResult importManagerData(MultipartFile file, boolean updateSupport) throws Exception {
|
|
|
+ ExcelUtil<StudentManagerVo> util = new ExcelUtil<StudentManagerVo>(StudentManagerVo.class);
|
|
|
+ List<StudentManagerVo> studentManagerList = util.importExcel(file.getInputStream());
|
|
|
+ List<StuBaseInfo> studentList = new ArrayList<>();
|
|
|
+ for(StudentManagerVo vo:studentManagerList){
|
|
|
+ StuBaseInfo stu = new StuBaseInfo();
|
|
|
+ StuClass stuClass = stuClassService.queryClassByName(vo.getClassName());
|
|
|
+ vo.setClassId(stuClass.getId());
|
|
|
+ StuRoom room = stuRoomService.queryRoomByName(vo.getRoomName());
|
|
|
+ vo.setRoomId(room.getId());
|
|
|
+
|
|
|
+ BeanUtils.copyBeanProp(stu,vo);
|
|
|
+ stu.setBuildingId(room.getBuiddingId());
|
|
|
+ studentList.add(stu);
|
|
|
+ }
|
|
|
+ String operName = SecurityUtils.getUsername();
|
|
|
+ String message = stuBaseInfoService.importBaseInfo(studentList, updateSupport, operName);
|
|
|
+ return AjaxResult.success(message);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 财务导出学生信息列表
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('student:base:export')")
|
|
|
+ @Log(title = "学生管理", businessType = BusinessType.EXPORT)
|
|
|
+ @ApiOperation(value = "学生财务数据导出")
|
|
|
+ @GetMapping("/financeExport")
|
|
|
+ public AjaxResult finaceExport(StuBaseInfo stuBaseInfo)
|
|
|
+ {
|
|
|
+ List<FinanceExportVo> list = stuBaseInfoService.selectStuFinanceInfoList(stuBaseInfo);
|
|
|
+ ExcelUtil<FinanceExportVo> util = new ExcelUtil<FinanceExportVo>(FinanceExportVo.class);
|
|
|
+ return util.exportExcel(list, "学生财务数据");
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
}
|