liql 4 vuotta sitten
vanhempi
commit
ccd9ed3ddb
40 muutettua tiedostoa jossa 4206 lisäystä ja 49 poistoa
  1. 25 26
      pom.xml
  2. 13 7
      ruoyi-admin/pom.xml
  3. 2 2
      ruoyi-admin/src/main/java/com/ruoyi/RuoYiApplication.java
  4. 235 0
      ruoyi-admin/src/main/java/com/ruoyi/web/controller/student/StuBaseInfoController.java
  5. 119 0
      ruoyi-admin/src/main/java/com/ruoyi/web/controller/student/StuClassController.java
  6. 106 0
      ruoyi-admin/src/main/java/com/ruoyi/web/controller/student/StuCollegeController.java
  7. 119 0
      ruoyi-admin/src/main/java/com/ruoyi/web/controller/student/StuDepartmentController.java
  8. 119 0
      ruoyi-admin/src/main/java/com/ruoyi/web/controller/student/StuProfessionController.java
  9. 2 2
      ruoyi-admin/src/main/java/com/ruoyi/web/controller/tool/SwaggerController.java
  10. 1 1
      ruoyi-admin/src/main/java/com/ruoyi/web/controller/tool/TestController.java
  11. 1 1
      ruoyi-admin/src/main/resources/application-druid.yml
  12. 9 9
      ruoyi-admin/src/main/resources/application.yml
  13. 7 1
      ruoyi-system/pom.xml
  14. 809 0
      ruoyi-system/src/main/java/com/ruoyi/system/domain/StuBaseInfo.java
  15. 174 0
      ruoyi-system/src/main/java/com/ruoyi/system/domain/StuClass.java
  16. 56 0
      ruoyi-system/src/main/java/com/ruoyi/system/domain/StuCollege.java
  17. 95 0
      ruoyi-system/src/main/java/com/ruoyi/system/domain/StuDepartment.java
  18. 113 0
      ruoyi-system/src/main/java/com/ruoyi/system/domain/StuProfession.java
  19. 23 0
      ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/StudentGraduationStatusVo.java
  20. 91 0
      ruoyi-system/src/main/java/com/ruoyi/system/mapper/StuBaseInfoMapper.java
  21. 71 0
      ruoyi-system/src/main/java/com/ruoyi/system/mapper/StuClassMapper.java
  22. 61 0
      ruoyi-system/src/main/java/com/ruoyi/system/mapper/StuCollegeMapper.java
  23. 71 0
      ruoyi-system/src/main/java/com/ruoyi/system/mapper/StuDepartmentMapper.java
  24. 76 0
      ruoyi-system/src/main/java/com/ruoyi/system/mapper/StuProfessionMapper.java
  25. 74 0
      ruoyi-system/src/main/java/com/ruoyi/system/service/IStuBaseInfoService.java
  26. 70 0
      ruoyi-system/src/main/java/com/ruoyi/system/service/IStuClassService.java
  27. 61 0
      ruoyi-system/src/main/java/com/ruoyi/system/service/IStuCollegeService.java
  28. 72 0
      ruoyi-system/src/main/java/com/ruoyi/system/service/IStuDepartmentService.java
  29. 70 0
      ruoyi-system/src/main/java/com/ruoyi/system/service/IStuProfessionService.java
  30. 196 0
      ruoyi-system/src/main/java/com/ruoyi/system/service/impl/StuBaseInfoServiceImpl.java
  31. 109 0
      ruoyi-system/src/main/java/com/ruoyi/system/service/impl/StuClassServiceImpl.java
  32. 96 0
      ruoyi-system/src/main/java/com/ruoyi/system/service/impl/StuCollegeServiceImpl.java
  33. 109 0
      ruoyi-system/src/main/java/com/ruoyi/system/service/impl/StuDepartmentServiceImpl.java
  34. 109 0
      ruoyi-system/src/main/java/com/ruoyi/system/service/impl/StuProfessionServiceImpl.java
  35. 27 0
      ruoyi-system/src/main/java/com/ruoyi/system/task/StudentStatusTask.java
  36. 412 0
      ruoyi-system/src/main/resources/mapper/department/StuBaseInfoMapper.xml
  37. 123 0
      ruoyi-system/src/main/resources/mapper/department/StuClassMapper.xml
  38. 78 0
      ruoyi-system/src/main/resources/mapper/department/StuCollegeMapper.xml
  39. 95 0
      ruoyi-system/src/main/resources/mapper/department/StuDepartmentMapper.xml
  40. 107 0
      ruoyi-system/src/main/resources/mapper/department/StuProfessionMapper.xml

+ 25 - 26
pom.xml

@@ -3,15 +3,14 @@
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion>
-	
+
     <groupId>com.ruoyi</groupId>
     <artifactId>ruoyi</artifactId>
     <version>3.3.0</version>
 
-    <name>ruoyi</name>
-    <url>http://www.ruoyi.vip</url>
-    <description>若依管理系统</description>
-    
+    <name>stu-man</name>
+    <description>高校新生信息管理</description>
+
     <properties>
         <ruoyi.version>3.3.0</ruoyi.version>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -32,11 +31,11 @@
         <velocity.version>1.7</velocity.version>
         <jwt.version>0.9.1</jwt.version>
     </properties>
-	
+
     <!-- 依赖声明 -->
     <dependencyManagement>
         <dependencies>
-        
+
             <!-- SpringBoot的依赖配置-->
             <dependency>
                 <groupId>org.springframework.boot</groupId>
@@ -45,28 +44,28 @@
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
-            
+
             <!--阿里数据库连接池 -->
             <dependency>
                 <groupId>com.alibaba</groupId>
                 <artifactId>druid-spring-boot-starter</artifactId>
                 <version>${druid.version}</version>
             </dependency>
-	        
+
             <!-- 解析客户端操作系统、浏览器等 -->
             <dependency>
                 <groupId>eu.bitwalker</groupId>
                 <artifactId>UserAgentUtils</artifactId>
                 <version>${bitwalker.version}</version>
             </dependency>
-			
+
             <!-- pagehelper 分页插件 -->
             <dependency>
                 <groupId>com.github.pagehelper</groupId>
                 <artifactId>pagehelper-spring-boot-starter</artifactId>
                 <version>${pagehelper.boot.version}</version>
             </dependency>
-			
+
             <!-- 获取系统信息 -->
             <dependency>
                 <groupId>com.github.oshi</groupId>
@@ -85,7 +84,7 @@
                 <artifactId>jna-platform</artifactId>
                 <version>${jna.version}</version>
             </dependency>
-			
+
             <!-- swagger2-->
             <dependency>
                 <groupId>io.springfox</groupId>
@@ -102,91 +101,91 @@
                     </exclusion>
                 </exclusions>
             </dependency>
-			
+
             <!-- swagger2-UI-->
             <dependency>
                 <groupId>io.springfox</groupId>
                 <artifactId>springfox-swagger-ui</artifactId>
                 <version>${swagger.version}</version>
             </dependency>
-            
+
             <!--io常用工具类 -->
             <dependency>
                 <groupId>commons-io</groupId>
                 <artifactId>commons-io</artifactId>
                 <version>${commons.io.version}</version>
             </dependency>
-	
+
             <!--文件上传工具类 -->
             <dependency>
                 <groupId>commons-fileupload</groupId>
                 <artifactId>commons-fileupload</artifactId>
                 <version>${commons.fileupload.version}</version>
             </dependency>
-			
+
             <!-- excel工具 -->
             <dependency>
                 <groupId>org.apache.poi</groupId>
                 <artifactId>poi-ooxml</artifactId>
                 <version>${poi.version}</version>
             </dependency>
-			
+
             <!--velocity代码生成使用模板 -->
             <dependency>
                 <groupId>org.apache.velocity</groupId>
                 <artifactId>velocity</artifactId>
                 <version>${velocity.version}</version>
             </dependency>
-	        
+
             <!-- 阿里JSON解析器 -->
             <dependency>
                 <groupId>com.alibaba</groupId>
                 <artifactId>fastjson</artifactId>
                 <version>${fastjson.version}</version>
             </dependency>
-			
+
             <!--Token生成与解析-->
             <dependency>
                 <groupId>io.jsonwebtoken</groupId>
                 <artifactId>jjwt</artifactId>
                 <version>${jwt.version}</version>
             </dependency>
-			
+
             <!--验证码 -->
             <dependency>
                 <groupId>com.github.penggle</groupId>
                 <artifactId>kaptcha</artifactId>
                 <version>${kaptcha.version}</version>
             </dependency>
-            
+
             <!-- 定时任务-->
             <dependency>
                 <groupId>com.ruoyi</groupId>
                 <artifactId>ruoyi-quartz</artifactId>
                 <version>${ruoyi.version}</version>
             </dependency>
-	
+
             <!-- 代码生成-->
             <dependency>
                 <groupId>com.ruoyi</groupId>
                 <artifactId>ruoyi-generator</artifactId>
                 <version>${ruoyi.version}</version>
             </dependency>
-			
+
             <!-- 核心模块-->
             <dependency>
                 <groupId>com.ruoyi</groupId>
                 <artifactId>ruoyi-framework</artifactId>
                 <version>${ruoyi.version}</version>
             </dependency>
-			
+
             <!-- 系统模块-->
             <dependency>
                 <groupId>com.ruoyi</groupId>
                 <artifactId>ruoyi-system</artifactId>
                 <version>${ruoyi.version}</version>
             </dependency>
-			
+
             <!-- 通用工具-->
             <dependency>
                 <groupId>com.ruoyi</groupId>
@@ -252,4 +251,4 @@
         </pluginRepository>
     </pluginRepositories>
 
-</project>
+</project>

+ 13 - 7
ruoyi-admin/pom.xml

@@ -29,6 +29,12 @@
             <groupId>io.springfox</groupId>
             <artifactId>springfox-swagger2</artifactId>
         </dependency>
+        <!-- knife4j ui-->
+        <dependency>
+            <groupId>com.github.xiaoymin</groupId>
+            <artifactId>knife4j-spring-ui</artifactId>
+            <version>2.0.8</version>
+        </dependency>
 
         <!--防止进入swagger页面报类型转换错误,排除2.9.2中的引用,手动增加1.5.21版本-->
         <dependency>
@@ -92,17 +98,17 @@
                     </execution>
                 </executions>
             </plugin>
-            <plugin>   
-                <groupId>org.apache.maven.plugins</groupId>   
-                <artifactId>maven-war-plugin</artifactId>   
-                <version>3.1.0</version>   
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-war-plugin</artifactId>
+                <version>3.1.0</version>
                 <configuration>
                     <failOnMissingWebXml>false</failOnMissingWebXml>
                     <warName>${project.artifactId}</warName>
-                </configuration>   
-           </plugin>   
+                </configuration>
+           </plugin>
         </plugins>
         <finalName>${project.artifactId}</finalName>
     </build>
 
-</project>
+</project>

+ 2 - 2
ruoyi-admin/src/main/java/com/ruoyi/RuoYiApplication.java

@@ -6,7 +6,7 @@ import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
 
 /**
  * 启动程序
- * 
+ *
  * @author ruoyi
  */
 @SpringBootApplication(exclude = { DataSourceAutoConfiguration.class })
@@ -16,7 +16,7 @@ public class RuoYiApplication
     {
         // System.setProperty("spring.devtools.restart.enabled", "false");
         SpringApplication.run(RuoYiApplication.class, args);
-        System.out.println("(♥◠‿◠)ノ゙  若依启动成功   ლ(´ڡ`ლ)゙  \n" +
+        System.out.println("(♥◠‿◠)ノ゙  高校新生信息管理系统启动成功   ლ(´ڡ`ლ)゙  \n" +
                 " .-------.       ____     __        \n" +
                 " |  _ _   \\      \\   \\   /  /    \n" +
                 " | ( ' )  |       \\  _. /  '       \n" +

+ 235 - 0
ruoyi-admin/src/main/java/com/ruoyi/web/controller/student/StuBaseInfoController.java

@@ -0,0 +1,235 @@
+package com.ruoyi.web.controller.student;
+
+import java.io.IOException;
+import java.util.List;
+
+import com.ruoyi.common.core.domain.entity.SysUser;
+import com.ruoyi.common.utils.SecurityUtils;
+import com.ruoyi.system.domain.StuBaseInfo;
+import com.ruoyi.system.service.IStuBaseInfoService;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+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.common.utils.poi.ExcelUtil;
+import com.ruoyi.common.core.page.TableDataInfo;
+import org.springframework.web.multipart.MultipartFile;
+
+import javax.servlet.http.HttpServletResponse;
+
+/**
+ * 学生管理 Controller
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+@RestController
+@RequestMapping("/student/base")
+@Api(value = "学生信息管理",tags={"学生信息管理"})
+public class StuBaseInfoController extends BaseController
+{
+    @Autowired
+    private IStuBaseInfoService stuBaseInfoService;
+
+    /**
+     * 查询所有学生列表
+     */
+    @PreAuthorize("@ss.hasPermi('student:base:list')")
+    @GetMapping("/list")
+    @ApiOperation(value = "所有学生列表")
+    public TableDataInfo list(StuBaseInfo stuBaseInfo)
+    {
+        startPage();
+        List<StuBaseInfo> list = stuBaseInfoService.selectStuBaseInfoList(stuBaseInfo);
+        return getDataTable(list);
+    }
+
+    /**
+     * 查询未报到的学生
+     */
+    @PreAuthorize("@ss.hasPermi('student:base:list')")
+    @GetMapping("/list0")
+    @ApiOperation(value = "未报到的学生列表")
+    public TableDataInfo list0(StuBaseInfo stuBaseInfo)
+    {
+        startPage();
+        stuBaseInfo.setStudentStatus(0L);
+        List<StuBaseInfo> list = stuBaseInfoService.selectStuBaseInfoList(stuBaseInfo);
+        return getDataTable(list);
+    }
+
+    /**
+     * 查询已报到的学生
+     */
+    @PreAuthorize("@ss.hasPermi('student:base:list')")
+    @GetMapping("/list1")
+    @ApiOperation(value = "已报到的学生列表")
+    public TableDataInfo list1(StuBaseInfo stuBaseInfo)
+    {
+        startPage();
+        stuBaseInfo.setStudentStatus(1L);
+        List<StuBaseInfo> list = stuBaseInfoService.selectStuBaseInfoList(stuBaseInfo);
+        return getDataTable(list);
+    }
+
+    /**
+     * 查询已缴费的学生
+     */
+    @PreAuthorize("@ss.hasPermi('student:base:list')")
+    @GetMapping("/list2")
+    @ApiOperation(value = "已缴费的学生列表")
+    public TableDataInfo list2(StuBaseInfo stuBaseInfo)
+    {
+        startPage();
+        stuBaseInfo.setStudentStatus(2L);
+        List<StuBaseInfo> list = stuBaseInfoService.selectStuBaseInfoList(stuBaseInfo);
+        return getDataTable(list);
+    }
+
+    /**
+     * 查询已毕业的学生
+     */
+    @PreAuthorize("@ss.hasPermi('student:base:list')")
+    @GetMapping("/list9")
+    @ApiOperation(value = "已毕业的学生列表")
+    public TableDataInfo list9(StuBaseInfo stuBaseInfo)
+    {
+        startPage();
+        stuBaseInfo.setStudentStatus(9L);
+        List<StuBaseInfo> list = stuBaseInfoService.selectStuBaseInfoList(stuBaseInfo);
+        return getDataTable(list);
+    }
+
+    /**
+     * 查询待评分的学生
+     */
+    @PreAuthorize("@ss.hasPermi('student:base:list')")
+    @GetMapping("/list99")
+    @ApiOperation(value = "已毕业的学生列表")
+    public TableDataInfo list99(StuBaseInfo stuBaseInfo)
+    {
+        startPage();
+        stuBaseInfo.setStudentStatus(99L);
+        List<StuBaseInfo> list = stuBaseInfoService.selectStuBaseInfoList(stuBaseInfo);
+        return getDataTable(list);
+    }
+
+
+    /**
+     * 导出学生列表
+     */
+    @PreAuthorize("@ss.hasPermi('student:base:export')")
+    @Log(title = "学生管理", businessType = BusinessType.EXPORT)
+    @ApiOperation(value = "导出")
+    @GetMapping("/export")
+    public AjaxResult export(StuBaseInfo stuBaseInfo)
+    {
+        List<StuBaseInfo> list = stuBaseInfoService.selectStuBaseInfoList(stuBaseInfo);
+        ExcelUtil<StuBaseInfo> util = new ExcelUtil<StuBaseInfo>(StuBaseInfo.class);
+        return util.exportExcel(list, "base");
+    }
+
+    /**
+     * 获取学生详细信息
+     */
+    @PreAuthorize("@ss.hasPermi('student:base:query')")
+    @GetMapping(value = "/{id}")
+    public AjaxResult getInfo(@PathVariable("id") Long id)
+    {
+        return AjaxResult.success(stuBaseInfoService.selectStuBaseInfoById(id));
+    }
+
+    /**
+     * 新增学生
+     */
+    @PreAuthorize("@ss.hasPermi('student:base:add')")
+    @Log(title = "学生管理", businessType = BusinessType.INSERT)
+    @PostMapping
+    @ApiOperation(value = "新增学生信息")
+    public AjaxResult add(@RequestBody StuBaseInfo stuBaseInfo)
+    {
+        return toAjax(stuBaseInfoService.insertStuBaseInfo(stuBaseInfo));
+    }
+
+    /**
+     * 修改学生
+     */
+    @PreAuthorize("@ss.hasPermi('student:base:edit')")
+    @Log(title = "学生管理", businessType = BusinessType.UPDATE)
+    @PutMapping
+    @ApiOperation(value = "修改学生信息")
+    public AjaxResult edit(@RequestBody StuBaseInfo stuBaseInfo)
+    {
+        return toAjax(stuBaseInfoService.updateStuBaseInfo(stuBaseInfo));
+    }
+
+    /**
+     * 新生缴费学生
+     */
+    @PreAuthorize("@ss.hasPermi('student:base:edit')")
+    @Log(title = "学生管理", businessType = BusinessType.UPDATE)
+    @PutMapping("/new-payment")
+    @ApiOperation(value = "新生缴费学生")
+    public AjaxResult edit2(@RequestBody StuBaseInfo stuBaseInfo)
+    {
+        stuBaseInfo.setStudentStatus(2L);
+        return toAjax(stuBaseInfoService.updateStuBaseInfo(stuBaseInfo));
+    }
+
+    /**
+     * 老生缴费学生
+     */
+    @PreAuthorize("@ss.hasPermi('student:base:edit')")
+    @Log(title = "学生管理", businessType = BusinessType.UPDATE)
+    @PutMapping("/old-payment")
+    @ApiOperation(value = "老生缴费学生")
+    public AjaxResult oldPayment(@RequestBody StuBaseInfo stuBaseInfo)
+    {
+        return toAjax(stuBaseInfoService.updateStuBaseInfo(stuBaseInfo));
+    }
+
+
+    /**
+     * 删除学生
+     */
+    @PreAuthorize("@ss.hasPermi('student:base:remove')")
+    @Log(title = "学生管理", businessType = BusinessType.DELETE)
+	@DeleteMapping("/{ids}")
+    @ApiOperation("删除学生")
+    public AjaxResult remove(@PathVariable Long[] ids)
+    {
+        return toAjax(stuBaseInfoService.deleteStuBaseInfoByIds(ids));
+    }
+
+    @Log(title = "学生管理", businessType = BusinessType.IMPORT)
+    @PreAuthorize("@ss.hasPermi('student:base:import')")
+    @PostMapping("/importData")
+    @ApiOperation(value = "导入学生信息")
+    public AjaxResult importData(MultipartFile file, boolean updateSupport) throws Exception {
+        ExcelUtil<StuBaseInfo> util = new ExcelUtil<StuBaseInfo>(StuBaseInfo.class);
+        List<StuBaseInfo> studentList = util.importExcel(file.getInputStream());
+        String operName = SecurityUtils.getUsername();
+        String message = stuBaseInfoService.importBaseInfo(studentList, updateSupport, operName);
+        return AjaxResult.success(message);
+    }
+
+    @GetMapping("/importTemplate")
+    @ApiOperation(value = "导入模板下载")
+    public AjaxResult importTemplate(HttpServletResponse response) throws IOException {
+        ExcelUtil<StuBaseInfo> util = new ExcelUtil<StuBaseInfo>(StuBaseInfo.class);
+        return util.importTemplateExcel("学生信息");
+    }
+
+}

+ 119 - 0
ruoyi-admin/src/main/java/com/ruoyi/web/controller/student/StuClassController.java

@@ -0,0 +1,119 @@
+package com.ruoyi.web.controller.student;
+
+import java.util.List;
+
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+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.StuClass;
+import com.ruoyi.system.service.IStuClassService;
+import com.ruoyi.common.utils.poi.ExcelUtil;
+import com.ruoyi.common.core.page.TableDataInfo;
+
+/**
+ * 班级Controller
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+@RestController
+@RequestMapping("/department/classes")
+@Api(value = "班级管理",tags={"班级管理"})
+public class StuClassController extends BaseController
+{
+    @Autowired
+    private IStuClassService stuClassService;
+
+    /**
+     * 查询班级列表
+     */
+    @PreAuthorize("@ss.hasPermi('department:classes:list')")
+    @GetMapping("/list")
+    @ApiOperation("班级列表")
+    public TableDataInfo list(StuClass stuClass)
+    {
+        startPage();
+        List<StuClass> list = stuClassService.selectStuClassList(stuClass);
+        return getDataTable(list);
+    }
+
+    /**
+     * 导出班级列表
+     */
+    @PreAuthorize("@ss.hasPermi('department:classes:export')")
+    @Log(title = "班级", businessType = BusinessType.EXPORT)
+    @GetMapping("/export")
+    public AjaxResult export(StuClass stuClass)
+    {
+        List<StuClass> list = stuClassService.selectStuClassList(stuClass);
+        ExcelUtil<StuClass> util = new ExcelUtil<StuClass>(StuClass.class);
+        return util.exportExcel(list, "classes");
+    }
+
+    /**
+     * 获取班级详细信息
+     */
+    @PreAuthorize("@ss.hasPermi('department:classes:query')")
+    @GetMapping(value = "/{id}")
+    public AjaxResult getInfo(@PathVariable("id") Long id)
+    {
+        return AjaxResult.success(stuClassService.selectStuClassById(id));
+    }
+
+    /**
+     * 新增班级
+     */
+    @PreAuthorize("@ss.hasPermi('department:classes:add')")
+    @Log(title = "班级", businessType = BusinessType.INSERT)
+    @PostMapping
+    public AjaxResult add(@RequestBody StuClass stuClass)
+    {
+        return toAjax(stuClassService.insertStuClass(stuClass));
+    }
+
+    /**
+     * 修改班级
+     */
+    @PreAuthorize("@ss.hasPermi('department:classes:edit')")
+    @Log(title = "班级", businessType = BusinessType.UPDATE)
+    @PutMapping
+    public AjaxResult edit(@RequestBody StuClass stuClass)
+    {
+        return toAjax(stuClassService.updateStuClass(stuClass));
+    }
+
+    /**
+     * 删除班级
+     */
+    @PreAuthorize("@ss.hasPermi('department:classes:remove')")
+    @Log(title = "班级", businessType = BusinessType.DELETE)
+	@DeleteMapping("/{ids}")
+    public AjaxResult remove(@PathVariable Long[] ids)
+    {
+        return toAjax(stuClassService.deleteStuClassByIds(ids));
+    }
+
+    /**
+     * 获取专业列表
+     */
+    @PreAuthorize("@ss.hasPermi('department:classes:query')")
+    @GetMapping(value = "/query-list/{professionId}")
+    @ApiOperation("根据专业id获取班级列表")
+    public TableDataInfo getList(@PathVariable("professionId") Long professionId)
+    {
+        return getDataTable(stuClassService.queryList(professionId));
+    }
+}

+ 106 - 0
ruoyi-admin/src/main/java/com/ruoyi/web/controller/student/StuCollegeController.java

@@ -0,0 +1,106 @@
+package com.ruoyi.web.controller.student;
+
+import java.util.List;
+
+import io.swagger.annotations.Api;
+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.StuCollege;
+import com.ruoyi.system.service.IStuCollegeService;
+import com.ruoyi.common.utils.poi.ExcelUtil;
+import com.ruoyi.common.core.page.TableDataInfo;
+
+/**
+ * 学院Controller
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+@RestController
+@RequestMapping("/department/college")
+@Api(value = "学院管理",tags={"学院管理"})
+public class StuCollegeController extends BaseController
+{
+    @Autowired
+    private IStuCollegeService stuCollegeService;
+
+    /**
+     * 查询学院列表
+     */
+    @PreAuthorize("@ss.hasPermi('department:college:list')")
+    @GetMapping("/list")
+    public TableDataInfo list(StuCollege stuCollege)
+    {
+        startPage();
+        List<StuCollege> list = stuCollegeService.selectStuCollegeList(stuCollege);
+        return getDataTable(list);
+    }
+
+    /**
+     * 导出学院列表
+     */
+    @PreAuthorize("@ss.hasPermi('department:college:export')")
+    @Log(title = "学院", businessType = BusinessType.EXPORT)
+    @GetMapping("/export")
+    public AjaxResult export(StuCollege stuCollege)
+    {
+        List<StuCollege> list = stuCollegeService.selectStuCollegeList(stuCollege);
+        ExcelUtil<StuCollege> util = new ExcelUtil<StuCollege>(StuCollege.class);
+        return util.exportExcel(list, "college");
+    }
+
+    /**
+     * 获取学院详细信息
+     */
+    @PreAuthorize("@ss.hasPermi('department:college:query')")
+    @GetMapping(value = "/{id}")
+    public AjaxResult getInfo(@PathVariable("id") Long id)
+    {
+        return AjaxResult.success(stuCollegeService.selectStuCollegeById(id));
+    }
+
+    /**
+     * 新增学院
+     */
+    @PreAuthorize("@ss.hasPermi('department:college:add')")
+    @Log(title = "学院", businessType = BusinessType.INSERT)
+    @PostMapping
+    public AjaxResult add(@RequestBody StuCollege stuCollege)
+    {
+        return toAjax(stuCollegeService.insertStuCollege(stuCollege));
+    }
+
+    /**
+     * 修改学院
+     */
+    @PreAuthorize("@ss.hasPermi('department:college:edit')")
+    @Log(title = "学院", businessType = BusinessType.UPDATE)
+    @PutMapping
+    public AjaxResult edit(@RequestBody StuCollege stuCollege)
+    {
+        return toAjax(stuCollegeService.updateStuCollege(stuCollege));
+    }
+
+    /**
+     * 删除学院
+     */
+    @PreAuthorize("@ss.hasPermi('department:college:remove')")
+    @Log(title = "学院", businessType = BusinessType.DELETE)
+	@DeleteMapping("/{ids}")
+    public AjaxResult remove(@PathVariable Long[] ids)
+    {
+        return toAjax(stuCollegeService.deleteStuCollegeByIds(ids));
+    }
+}

+ 119 - 0
ruoyi-admin/src/main/java/com/ruoyi/web/controller/student/StuDepartmentController.java

@@ -0,0 +1,119 @@
+package com.ruoyi.web.controller.student;
+
+import java.util.List;
+
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+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.StuDepartment;
+import com.ruoyi.system.service.IStuDepartmentService;
+import com.ruoyi.common.utils.poi.ExcelUtil;
+import com.ruoyi.common.core.page.TableDataInfo;
+
+/**
+ * 科系Controller
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+@RestController
+@RequestMapping("/department/depart")
+@Api(value = "科系管理",tags={"科系管理"})
+public class StuDepartmentController extends BaseController
+{
+    @Autowired
+    private IStuDepartmentService stuDepartmentService;
+
+    /**
+     * 查询科系列表
+     */
+    @PreAuthorize("@ss.hasPermi('department:depart:list')")
+    @GetMapping("/list")
+    @ApiOperation("科系列表")
+    public TableDataInfo list(StuDepartment stuDepartment)
+    {
+        startPage();
+        List<StuDepartment> list = stuDepartmentService.selectStuDepartmentList(stuDepartment);
+        return getDataTable(list);
+    }
+
+    /**
+     * 导出科系列表
+     */
+    @PreAuthorize("@ss.hasPermi('department:depart:export')")
+    @Log(title = "科系", businessType = BusinessType.EXPORT)
+    @GetMapping("/export")
+    public AjaxResult export(StuDepartment stuDepartment)
+    {
+        List<StuDepartment> list = stuDepartmentService.selectStuDepartmentList(stuDepartment);
+        ExcelUtil<StuDepartment> util = new ExcelUtil<StuDepartment>(StuDepartment.class);
+        return util.exportExcel(list, "depart");
+    }
+
+    /**
+     * 获取科系详细信息
+     */
+    @PreAuthorize("@ss.hasPermi('department:depart:query')")
+    @GetMapping(value = "/{id}")
+    public AjaxResult getInfo(@PathVariable("id") Long id)
+    {
+        return AjaxResult.success(stuDepartmentService.selectStuDepartmentById(id));
+    }
+
+    /**
+     * 新增科系
+     */
+    @PreAuthorize("@ss.hasPermi('department:depart:add')")
+    @Log(title = "科系", businessType = BusinessType.INSERT)
+    @PostMapping
+    public AjaxResult add(@RequestBody StuDepartment stuDepartment)
+    {
+        return toAjax(stuDepartmentService.insertStuDepartment(stuDepartment));
+    }
+
+    /**
+     * 修改科系
+     */
+    @PreAuthorize("@ss.hasPermi('department:depart:edit')")
+    @Log(title = "科系", businessType = BusinessType.UPDATE)
+    @PutMapping
+    public AjaxResult edit(@RequestBody StuDepartment stuDepartment)
+    {
+        return toAjax(stuDepartmentService.updateStuDepartment(stuDepartment));
+    }
+
+    /**
+     * 删除科系
+     */
+    @PreAuthorize("@ss.hasPermi('department:depart:remove')")
+    @Log(title = "科系", businessType = BusinessType.DELETE)
+	@DeleteMapping("/{ids}")
+    public AjaxResult remove(@PathVariable Long[] ids)
+    {
+        return toAjax(stuDepartmentService.deleteStuDepartmentByIds(ids));
+    }
+
+    /**
+     * 获取科系详细信息
+     */
+    @PreAuthorize("@ss.hasPermi('department:depart:query')")
+    @GetMapping(value = "/query-list/{collegeId}")
+    @ApiOperation("根据学院id获取专业列表")
+    public TableDataInfo getList(@PathVariable("collegeId") Long collegeId)
+    {
+        return getDataTable(stuDepartmentService.queryList(collegeId));
+    }
+}

+ 119 - 0
ruoyi-admin/src/main/java/com/ruoyi/web/controller/student/StuProfessionController.java

@@ -0,0 +1,119 @@
+package com.ruoyi.web.controller.student;
+
+import java.util.List;
+
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+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.StuProfession;
+import com.ruoyi.system.service.IStuProfessionService;
+import com.ruoyi.common.utils.poi.ExcelUtil;
+import com.ruoyi.common.core.page.TableDataInfo;
+
+/**
+ * 专业Controller
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+@RestController
+@RequestMapping("/department/profession")
+@Api(value = "专业管理",tags={"专业管理"})
+public class StuProfessionController extends BaseController
+{
+    @Autowired
+    private IStuProfessionService stuProfessionService;
+
+    /**
+     * 查询专业列表
+     */
+    @PreAuthorize("@ss.hasPermi('department:profession:list')")
+    @GetMapping("/list")
+    @ApiOperation("专业列表")
+    public TableDataInfo list(StuProfession stuProfession)
+    {
+        startPage();
+        List<StuProfession> list = stuProfessionService.selectStuProfessionList(stuProfession);
+        return getDataTable(list);
+    }
+
+    /**
+     * 导出专业列表
+     */
+    @PreAuthorize("@ss.hasPermi('department:profession:export')")
+    @Log(title = "专业", businessType = BusinessType.EXPORT)
+    @GetMapping("/export")
+    public AjaxResult export(StuProfession stuProfession)
+    {
+        List<StuProfession> list = stuProfessionService.selectStuProfessionList(stuProfession);
+        ExcelUtil<StuProfession> util = new ExcelUtil<StuProfession>(StuProfession.class);
+        return util.exportExcel(list, "profession");
+    }
+
+    /**
+     * 获取专业详细信息
+     */
+    @PreAuthorize("@ss.hasPermi('department:profession:query')")
+    @GetMapping(value = "/{id}")
+    public AjaxResult getInfo(@PathVariable("id") Long id)
+    {
+        return AjaxResult.success(stuProfessionService.selectStuProfessionById(id));
+    }
+
+    /**
+     * 新增专业
+     */
+    @PreAuthorize("@ss.hasPermi('department:profession:add')")
+    @Log(title = "专业", businessType = BusinessType.INSERT)
+    @PostMapping
+    public AjaxResult add(@RequestBody StuProfession stuProfession)
+    {
+        return toAjax(stuProfessionService.insertStuProfession(stuProfession));
+    }
+
+    /**
+     * 修改专业
+     */
+    @PreAuthorize("@ss.hasPermi('department:profession:edit')")
+    @Log(title = "专业", businessType = BusinessType.UPDATE)
+    @PutMapping
+    public AjaxResult edit(@RequestBody StuProfession stuProfession)
+    {
+        return toAjax(stuProfessionService.updateStuProfession(stuProfession));
+    }
+
+    /**
+     * 删除专业
+     */
+    @PreAuthorize("@ss.hasPermi('department:profession:remove')")
+    @Log(title = "专业", businessType = BusinessType.DELETE)
+	@DeleteMapping("/{ids}")
+    public AjaxResult remove(@PathVariable Long[] ids)
+    {
+        return toAjax(stuProfessionService.deleteStuProfessionByIds(ids));
+    }
+
+    /**
+     * 获取专业列表
+     */
+    @PreAuthorize("@ss.hasPermi('department:profession:query')")
+    @GetMapping(value = "/query-list/{departmentId}")
+    @ApiOperation("根据科系id获取专业列表")
+    public TableDataInfo getList(@PathVariable("departmentId") Long departmentId)
+    {
+        return getDataTable(stuProfessionService.queryList(departmentId));
+    }
+}

+ 2 - 2
ruoyi-admin/src/main/java/com/ruoyi/web/controller/tool/SwaggerController.java

@@ -8,7 +8,7 @@ import com.ruoyi.common.core.controller.BaseController;
 
 /**
  * swagger 接口
- * 
+ *  return redirect("/doc.html");
  * @author ruoyi
  */
 @Controller
@@ -19,6 +19,6 @@ public class SwaggerController extends BaseController
     @GetMapping()
     public String index()
     {
-        return redirect("/swagger-ui.html");
+        return redirect("/doc.html");
     }
 }

+ 1 - 1
ruoyi-admin/src/main/java/com/ruoyi/web/controller/tool/TestController.java

@@ -25,7 +25,7 @@ import io.swagger.annotations.ApiOperation;
  * 
  * @author ruoyi
  */
-@Api("用户信息管理")
+@Api(value = "用户信息管理",tags = {"用户信息管理"},hidden = true)
 @RestController
 @RequestMapping("/test/user")
 public class TestController extends BaseController

+ 1 - 1
ruoyi-admin/src/main/resources/application-druid.yml

@@ -6,7 +6,7 @@ spring:
         druid:
             # 主库数据源
             master:
-                url: jdbc:mysql://localhost:3306/ry-vue?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
+                url: jdbc:mysql://localhost:3306/stu_man?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
                 username: root
                 password: root123
             # 从库数据源

+ 9 - 9
ruoyi-admin/src/main/resources/application.yml

@@ -1,15 +1,15 @@
 # 项目相关配置
 ruoyi:
   # 名称
-  name: RuoYi
+  name: StudentInfoManager
   # 版本
   version: 3.3.0
   # 版权年份
   copyrightYear: 2021
   # 实例演示开关
-  demoEnabled: true
+  demoEnabled: false
   # 文件路径 示例( Windows配置D:/ruoyi/uploadPath,Linux配置 /home/ruoyi/uploadPath)
-  profile: D:/ruoyi/uploadPath
+  profile: D:/stu-man/uploadPath
   # 获取ip地址开关
   addressEnabled: false
   # 验证码类型 math 数组计算 char 字符验证
@@ -42,7 +42,7 @@ spring:
   messages:
     # 国际化资源文件路径
     basename: i18n/messages
-  profiles: 
+  profiles:
     active: druid
   # 文件上传
   servlet:
@@ -65,7 +65,7 @@ spring:
     # 数据库索引
     database: 0
     # 密码
-    password: 
+    password:
     # 连接超时时间
     timeout: 10s
     lettuce:
@@ -87,7 +87,7 @@ token:
     secret: abcdefghijklmnopqrstuvwxyz
     # 令牌有效期(默认30分钟)
     expireTime: 30
-  
+
 # MyBatis配置
 mybatis:
     # 搜索指定包别名
@@ -98,11 +98,11 @@ mybatis:
     configLocation: classpath:mybatis/mybatis-config.xml
 
 # PageHelper分页插件
-pagehelper: 
+pagehelper:
   helperDialect: mysql
   reasonable: true
   supportMethodsArguments: true
-  params: count=countSql 
+  params: count=countSql
 
 # Swagger配置
 swagger:
@@ -112,7 +112,7 @@ swagger:
   pathMapping: /dev-api
 
 # 防止XSS攻击
-xss: 
+xss:
   # 过滤开关
   enabled: true
   # 排除链接(多个用逗号分隔)

+ 7 - 1
ruoyi-system/pom.xml

@@ -23,6 +23,12 @@
             <artifactId>ruoyi-common</artifactId>
         </dependency>
 
+        <dependency>
+            <groupId>io.swagger</groupId>
+            <artifactId>swagger-annotations</artifactId>
+            <version>1.5.21</version>
+        </dependency>
+
     </dependencies>
 
-</project>
+</project>

+ 809 - 0
ruoyi-system/src/main/java/com/ruoyi/system/domain/StuBaseInfo.java

@@ -0,0 +1,809 @@
+package com.ruoyi.system.domain;
+
+import java.math.BigDecimal;
+import java.util.Date;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+import com.ruoyi.common.annotation.Excel;
+import com.ruoyi.common.core.domain.BaseEntity;
+
+/**
+ * 学生对象 stu_base_info
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+@ApiModel("学生信息模型")
+public class StuBaseInfo extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** 主键id */
+    @ApiModelProperty(value = "主键id")
+    private Long id;
+
+    /** 姓名 */
+    @Excel(name = "姓名")
+    @ApiModelProperty(value = "学生姓名")
+    private String studentName;
+
+    /** 性别 */
+    @Excel(name = "性别",readConverterExp = "0=男,1=女,2=未知")
+    @ApiModelProperty(value = "性别")
+    private String sex;
+
+    /** 学历 */
+    @Excel(name = "学历")
+    @ApiModelProperty(value = "学历")
+    private String educationBackground;
+
+    /** 应届生、往届生 */
+    @Excel(name = "应届生、往届生")
+    @ApiModelProperty(value = "应届生、往届生")
+    private String freshStudent;
+
+    /** 身份证号码 */
+    @Excel(name = "身份证号码")
+    @ApiModelProperty(value = "身份证号码")
+    private String idCardNumber;
+
+    //@Excel(name = "学号")
+    @ApiModelProperty(value = "学号")
+    private String studentNumber;
+
+    /** 学生状态(0未报到,1已报到,2已缴费,3第二次缴费,4第三次缴费,5第四次缴费 6第五次缴费,7第六次缴费,8已评分,9已毕业,10已就业) */
+    //@Excel(name = "学生状态")
+    @ApiModelProperty(value = "学生状态(0未报到,1已报到,2已缴费,3第二次缴费,4第三次缴费,5第四次缴费 6第五次缴费,7第六次缴费,8已评分")
+    private Long studentStatus;
+
+    /** 联系电话 */
+    @Excel(name = "联系电话")
+    @ApiModelProperty(value = "联系电话")
+    private String phone;
+
+    @JsonFormat(pattern = "yyyy-MM-dd")
+    @Excel(name = "应报到日期", width = 30, dateFormat = "yyyy-MM-dd")
+    @ApiModelProperty(value = "应报到日期")
+    private Date shouldRegisterDate;
+
+    /** 生源地 */
+    @Excel(name = "生源地")
+    @ApiModelProperty(value = "生源地")
+    private String originOfStudent;
+
+    /** 毕业学校 */
+    @Excel(name = "毕业学校")
+    @ApiModelProperty(value = "毕业学校")
+    private String graduatedFrom;
+
+    /** 专业id */
+    //@Excel(name = "专业id")
+    @ApiModelProperty(value = "专业id")
+    private Long professionId;
+
+    /** 报读专业 */
+    @Excel(name = "报读专业")
+    @ApiModelProperty(value = "报读专业")
+    private String professionName;
+
+    /** 年级id */
+    //@Excel(name = "年级id")
+    @ApiModelProperty(value = "年级id")
+    private Long classId;
+
+    /** 年级名称 */
+    //@Excel(name = "年级名称")
+    @ApiModelProperty(value = "年级名称")
+    private String className;
+
+    /** 保险购买状态 */
+    //@Excel(name = "保险购买状态")
+    @ApiModelProperty(value = "保险购买状态")
+    private Long insuranceIsBuy;
+
+    /** 宿舍分配状态 */
+    //@Excel(name = "宿舍分配状态")
+    @ApiModelProperty(value = "宿舍分配状态")
+    private Long dormIsAllot;
+
+    /** 校服分发状态 */
+    //@Excel(name = "校服分发状态")
+    @ApiModelProperty(value = "校服分发状态")
+    private Long uniformIsHandOut;
+
+    /** 课本分发状态 */
+    //@Excel(name = "课本分发状态")
+    @ApiModelProperty(value = "课本分发状态")
+    private Long textbookIsHandOut;
+
+    /** 综合评分 */
+    //@Excel(name = "综合评分")
+    @ApiModelProperty(value = "综合评分")
+    private Long score;
+
+    /** 评分依据 */
+    //@Excel(name = "评分依据")
+    @ApiModelProperty(value = "评分依据")
+    private String scoreBy;
+
+    /** 入职公司名称 */
+    //@Excel(name = "入职公司名称")
+    @ApiModelProperty(value = "入职公司名称")
+    private String companyName;
+
+    /** 入职日期 */
+    @JsonFormat(pattern = "yyyy-MM-dd")
+    //@Excel(name = "入职日期", width = 30, dateFormat = "yyyy-MM-dd")
+    @ApiModelProperty(value = "入职日期")
+    private Date entryDate;
+
+    /** 公司地址 */
+    //@Excel(name = "公司地址")
+    @ApiModelProperty(value = "公司地址")
+    private String companyAddress;
+
+    /** $column.columnComment */
+    //@Excel(name = "公司联系人")
+    @ApiModelProperty(value = "公司联系人")
+    private String contactName;
+
+    /** 公司联系电话 */
+    //@Excel(name = "公司联系电话")
+    @ApiModelProperty(value = "公司联系电话")
+    private String companyPhone;
+
+    /** 是否建档立卡贫困户 */
+    //@Excel(name = "是否建档立卡贫困户")
+    @ApiModelProperty(value = "是否建档立卡贫困户0否,1是")
+    private Long poorHouseholdsIs;
+
+    /** 实际报到日期 */
+    @JsonFormat(pattern = "yyyy-MM-dd")
+    //@Excel(name = "实际报到日期", width = 30, dateFormat = "yyyy-MM-dd")
+    @ApiModelProperty(value = "实际报到日期")
+    private Date registerDate;
+
+    /** 正式入学日期 */
+    @JsonFormat(pattern = "yyyy-MM-dd")
+    //@Excel(name = "正式入学日期", width = 30, dateFormat = "yyyy-MM-dd")
+    @ApiModelProperty(value = "正式入学日期")
+    private Date enrollmentDate;
+
+    /** 应收住宿费 */
+    //@Excel(name = "应收杂费")
+    @ApiModelProperty(value = "应收杂费")
+    private BigDecimal receivableIncidentals;
+
+    /** 应收住宿费 */
+    //@Excel(name = "应收住宿费")
+    @ApiModelProperty(value = "应收住宿费")
+    private BigDecimal receivableQuarterage;
+
+    @ApiModelProperty(value = "应收费总计")
+    private BigDecimal receivableTotal;
+
+    /** 实收住宿费 */
+    //@Excel(name = "实收杂费")
+    @ApiModelProperty(value = "实收杂费")
+    private BigDecimal officialIncidentals;
+
+    /** 杂费票据号 */
+    //@Excel(name = "杂费票据号")
+    @ApiModelProperty(value = "杂费票据号")
+    private String incidentalsBillNo;
+
+    /** 实收住宿费 */
+    //@Excel(name = "实收住宿费")
+    @ApiModelProperty(value = "实收住宿费")
+    private BigDecimal officialQuarterage;
+
+    @ApiModelProperty(value = "实收费总计")
+    private BigDecimal officialTotal;
+
+    /** 住宿费票据号 */
+    //@Excel(name = "住宿费票据号")
+    @ApiModelProperty(value = "住宿费票据号")
+    private String quarterageBillNo;
+
+    /** 登记收费人员 */
+    //@Excel(name = "登记收费人员")
+    @ApiModelProperty(value = "登记收费人员")
+    private String chargerName;
+
+    /** 缴费日期 */
+    @JsonFormat(pattern = "yyyy-MM-dd")
+    //@Excel(name = "缴费日期", width = 30, dateFormat = "yyyy-MM-dd")
+    @ApiModelProperty(value = "缴费日期")
+    private Date paymentDate;
+
+    //@Excel(name = "缴费方式")
+    @ApiModelProperty(value = "缴费方式")
+    private String paymentMethod;
+
+    /** 开票员 */
+   // @Excel(name = "开票员")
+    @ApiModelProperty(value = "开票员")
+    private String drawer;
+
+    /** 联系老师 */
+    //@Excel(name = "联系老师")
+    @ApiModelProperty(value = "联系老师")
+    private String contactTeacher;
+
+    /** 杂费票据序号 */
+    //@Excel(name = "杂费票据序号")
+    @ApiModelProperty(value = "杂费票据序号")
+    private String incidentalsBillSerial;
+
+    /** 第一学年下半年是否缴费 */
+    //@Excel(name = "第一学年下半年是否缴费")
+    @ApiModelProperty(value = "第一学年下半年是否缴费0未缴 1已缴")
+    private Long firstLowHalfIs;
+
+    /** 第二学年上半年是否缴费 */
+    //@Excel(name = "第二学年上半年是否缴费")
+    @ApiModelProperty(value = "第二学年上半年是否缴费0未缴 1已缴")
+    private Long secondUpHalfIs;
+
+    /** 第二学年下半年是否缴费 */
+    //@Excel(name = "第二学年下半年是否缴费")
+    @ApiModelProperty(value = "第二学年下半年是否缴费0未缴 1已缴")
+    private Long secondLowHalfIs;
+
+    /** 第三学年上半年是否缴费 */
+    //@Excel(name = "第三学年上半年是否缴费")
+    @ApiModelProperty(value = "第三学年上半年是否缴费0未缴 1已缴")
+    private Long thirdUpHalfIs;
+
+    /** 第三学年下半年是否缴费 */
+    //@Excel(name = "第三学年下半年是否缴费")
+    @ApiModelProperty(value = "第三学年下半年是否缴费0未缴 1已缴")
+    private Long thirdLowHalfIs;
+
+    /** 缴费次数 */
+    //@Excel(name = "缴费次数")
+    @ApiModelProperty(value = "缴费次数")
+    private Long chargeTimes;
+
+    private Long departmentId;
+    private String departmentName;
+    private Long collegeId;
+    private String collegeName;
+
+    public void setId(Long id)
+    {
+        this.id = id;
+    }
+
+    public Long getId()
+    {
+        return id;
+    }
+    public void setStudentName(String studentName)
+    {
+        this.studentName = studentName;
+    }
+
+    public String getStudentName()
+    {
+        return studentName;
+    }
+    public void setSex(String sex)
+    {
+        this.sex = sex;
+    }
+
+    public String getSex()
+    {
+        return sex;
+    }
+    public void setEducationBackground(String educationBackground)
+    {
+        this.educationBackground = educationBackground;
+    }
+
+    public String getEducationBackground()
+    {
+        return educationBackground;
+    }
+    public void setFreshStudent(String freshStudent)
+    {
+        this.freshStudent = freshStudent;
+    }
+
+    public String getFreshStudent()
+    {
+        return freshStudent;
+    }
+    public void setIdCardNumber(String idCardNumber)
+    {
+        this.idCardNumber = idCardNumber;
+    }
+
+    public String getIdCardNumber()
+    {
+        return idCardNumber;
+    }
+    public void setStudentStatus(Long studentStatus)
+    {
+        this.studentStatus = studentStatus;
+    }
+
+    public Long getStudentStatus()
+    {
+        return studentStatus;
+    }
+    public void setPhone(String phone)
+    {
+        this.phone = phone;
+    }
+
+    public String getPhone()
+    {
+        return phone;
+    }
+    public void setOriginOfStudent(String originOfStudent)
+    {
+        this.originOfStudent = originOfStudent;
+    }
+
+    public String getOriginOfStudent()
+    {
+        return originOfStudent;
+    }
+    public void setGraduatedFrom(String graduatedFrom)
+    {
+        this.graduatedFrom = graduatedFrom;
+    }
+
+    public String getGraduatedFrom()
+    {
+        return graduatedFrom;
+    }
+    public void setProfessionId(Long professionId)
+    {
+        this.professionId = professionId;
+    }
+
+    public Long getProfessionId()
+    {
+        return professionId;
+    }
+    public void setProfessionName(String professionName)
+    {
+        this.professionName = professionName;
+    }
+
+    public String getProfessionName()
+    {
+        return professionName;
+    }
+    public void setClassId(Long classId)
+    {
+        this.classId = classId;
+    }
+
+    public Long getClassId()
+    {
+        return classId;
+    }
+    public void setClassName(String className)
+    {
+        this.className = className;
+    }
+
+    public String getClassName()
+    {
+        return className;
+    }
+    public void setInsuranceIsBuy(Long insuranceIsBuy)
+    {
+        this.insuranceIsBuy = insuranceIsBuy;
+    }
+
+    public Long getInsuranceIsBuy()
+    {
+        return insuranceIsBuy;
+    }
+    public void setDormIsAllot(Long dormIsAllot)
+    {
+        this.dormIsAllot = dormIsAllot;
+    }
+
+    public Long getDormIsAllot()
+    {
+        return dormIsAllot;
+    }
+    public void setUniformIsHandOut(Long uniformIsHandOut)
+    {
+        this.uniformIsHandOut = uniformIsHandOut;
+    }
+
+    public Long getUniformIsHandOut()
+    {
+        return uniformIsHandOut;
+    }
+    public void setTextbookIsHandOut(Long textbookIsHandOut)
+    {
+        this.textbookIsHandOut = textbookIsHandOut;
+    }
+
+    public Long getTextbookIsHandOut()
+    {
+        return textbookIsHandOut;
+    }
+    public void setScore(Long score)
+    {
+        this.score = score;
+    }
+
+    public Long getScore()
+    {
+        return score;
+    }
+    public void setScoreBy(String scoreBy)
+    {
+        this.scoreBy = scoreBy;
+    }
+
+    public String getScoreBy()
+    {
+        return scoreBy;
+    }
+    public void setCompanyName(String companyName)
+    {
+        this.companyName = companyName;
+    }
+
+    public String getCompanyName()
+    {
+        return companyName;
+    }
+    public void setEntryDate(Date entryDate)
+    {
+        this.entryDate = entryDate;
+    }
+
+    public Date getEntryDate()
+    {
+        return entryDate;
+    }
+    public void setCompanyAddress(String companyAddress)
+    {
+        this.companyAddress = companyAddress;
+    }
+
+    public String getCompanyAddress()
+    {
+        return companyAddress;
+    }
+    public void setContactName(String contactName)
+    {
+        this.contactName = contactName;
+    }
+
+    public String getContactName()
+    {
+        return contactName;
+    }
+    public void setCompanyPhone(String companyPhone)
+    {
+        this.companyPhone = companyPhone;
+    }
+
+    public String getCompanyPhone()
+    {
+        return companyPhone;
+    }
+    public void setPoorHouseholdsIs(Long poorHouseholdsIs)
+    {
+        this.poorHouseholdsIs = poorHouseholdsIs;
+    }
+
+    public Long getPoorHouseholdsIs()
+    {
+        return poorHouseholdsIs;
+    }
+    public void setRegisterDate(Date registerDate)
+    {
+        this.registerDate = registerDate;
+    }
+
+    public Date getRegisterDate()
+    {
+        return registerDate;
+    }
+    public void setEnrollmentDate(Date enrollmentDate)
+    {
+        this.enrollmentDate = enrollmentDate;
+    }
+
+    public Date getEnrollmentDate()
+    {
+        return enrollmentDate;
+    }
+    public void setReceivableIncidentals(BigDecimal receivableIncidentals)
+    {
+        this.receivableIncidentals = receivableIncidentals;
+    }
+
+    public BigDecimal getReceivableIncidentals()
+    {
+        return receivableIncidentals;
+    }
+    public void setReceivableQuarterage(BigDecimal receivableQuarterage)
+    {
+        this.receivableQuarterage = receivableQuarterage;
+    }
+
+    public BigDecimal getReceivableQuarterage()
+    {
+        return receivableQuarterage;
+    }
+    public void setOfficialIncidentals(BigDecimal officialIncidentals)
+    {
+        this.officialIncidentals = officialIncidentals;
+    }
+
+    public BigDecimal getOfficialIncidentals()
+    {
+        return officialIncidentals;
+    }
+    public void setIncidentalsBillNo(String incidentalsBillNo)
+    {
+        this.incidentalsBillNo = incidentalsBillNo;
+    }
+
+    public String getIncidentalsBillNo()
+    {
+        return incidentalsBillNo;
+    }
+    public void setOfficialQuarterage(BigDecimal officialQuarterage)
+    {
+        this.officialQuarterage = officialQuarterage;
+    }
+
+    public BigDecimal getOfficialQuarterage()
+    {
+        return officialQuarterage;
+    }
+    public void setQuarterageBillNo(String quarterageBillNo)
+    {
+        this.quarterageBillNo = quarterageBillNo;
+    }
+
+    public String getQuarterageBillNo()
+    {
+        return quarterageBillNo;
+    }
+    public void setChargerName(String chargerName)
+    {
+        this.chargerName = chargerName;
+    }
+
+    public String getChargerName()
+    {
+        return chargerName;
+    }
+    public void setPaymentDate(Date paymentDate)
+    {
+        this.paymentDate = paymentDate;
+    }
+
+    public Date getPaymentDate()
+    {
+        return paymentDate;
+    }
+    public void setDrawer(String drawer)
+    {
+        this.drawer = drawer;
+    }
+
+    public String getDrawer()
+    {
+        return drawer;
+    }
+    public void setContactTeacher(String contactTeacher)
+    {
+        this.contactTeacher = contactTeacher;
+    }
+
+    public String getContactTeacher()
+    {
+        return contactTeacher;
+    }
+    public void setIncidentalsBillSerial(String incidentalsBillSerial)
+    {
+        this.incidentalsBillSerial = incidentalsBillSerial;
+    }
+
+    public String getIncidentalsBillSerial()
+    {
+        return incidentalsBillSerial;
+    }
+    public void setFirstLowHalfIs(Long firstLowHalfIs)
+    {
+        this.firstLowHalfIs = firstLowHalfIs;
+    }
+
+    public Long getFirstLowHalfIs()
+    {
+        return firstLowHalfIs;
+    }
+    public void setSecondUpHalfIs(Long secondUpHalfIs)
+    {
+        this.secondUpHalfIs = secondUpHalfIs;
+    }
+
+    public Long getSecondUpHalfIs()
+    {
+        return secondUpHalfIs;
+    }
+    public void setSecondLowHalfIs(Long secondLowHalfIs)
+    {
+        this.secondLowHalfIs = secondLowHalfIs;
+    }
+
+    public Long getSecondLowHalfIs()
+    {
+        return secondLowHalfIs;
+    }
+    public void setThirdUpHalfIs(Long thirdUpHalfIs)
+    {
+        this.thirdUpHalfIs = thirdUpHalfIs;
+    }
+
+    public Long getThirdUpHalfIs()
+    {
+        return thirdUpHalfIs;
+    }
+    public void setThirdLowHalfIs(Long thirdLowHalfIs)
+    {
+        this.thirdLowHalfIs = thirdLowHalfIs;
+    }
+
+    public Long getThirdLowHalfIs()
+    {
+        return thirdLowHalfIs;
+    }
+    public void setChargeTimes(Long chargeTimes)
+    {
+        this.chargeTimes = chargeTimes;
+    }
+
+    public Long getChargeTimes()
+    {
+        return chargeTimes;
+    }
+
+    public Date getShouldRegisterDate() {
+        return shouldRegisterDate;
+    }
+
+    public void setShouldRegisterDate(Date shouldRegisterDate) {
+        this.shouldRegisterDate = shouldRegisterDate;
+    }
+
+    public String getPaymentMethod() {
+        return paymentMethod;
+    }
+
+    public void setPaymentMethod(String paymentMethod) {
+        this.paymentMethod = paymentMethod;
+    }
+
+    public Long getDepartmentId() {
+        return departmentId;
+    }
+
+    public void setDepartmentId(Long departmentId) {
+        this.departmentId = departmentId;
+    }
+
+    public String getDepartmentName() {
+        return departmentName;
+    }
+
+    public void setDepartmentName(String departmentName) {
+        this.departmentName = departmentName;
+    }
+
+    public Long getCollegeId() {
+        return collegeId;
+    }
+
+    public void setCollegeId(Long collegeId) {
+        this.collegeId = collegeId;
+    }
+
+    public String getCollegeName() {
+        return collegeName;
+    }
+
+    public String getStudentNumber() {
+        return studentNumber;
+    }
+
+    public void setStudentNumber(String studentNumber) {
+        this.studentNumber = studentNumber;
+    }
+
+    public void setCollegeName(String collegeName) {
+        this.collegeName = collegeName;
+    }
+
+    public BigDecimal getReceivableTotal() {
+        return receivableTotal;
+    }
+
+    public void setReceivableTotal(BigDecimal receivableTotal) {
+        this.receivableTotal = receivableTotal;
+    }
+
+    public BigDecimal getOfficialTotal() {
+        return officialTotal;
+    }
+
+    public void setOfficialTotal(BigDecimal officialTotal) {
+        this.officialTotal = officialTotal;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("studentName", getStudentName())
+            .append("sex", getSex())
+            .append("educationBackground", getEducationBackground())
+            .append("freshStudent", getFreshStudent())
+            .append("idCardNumber", getIdCardNumber())
+            .append("studentStatus", getStudentStatus())
+            .append("phone", getPhone())
+            .append("originOfStudent", getOriginOfStudent())
+            .append("graduatedFrom", getGraduatedFrom())
+            .append("professionId", getProfessionId())
+            .append("professionName", getProfessionName())
+            .append("classId", getClassId())
+            .append("className", getClassName())
+            .append("insuranceIsBuy", getInsuranceIsBuy())
+            .append("dormIsAllot", getDormIsAllot())
+            .append("uniformIsHandOut", getUniformIsHandOut())
+            .append("textbookIsHandOut", getTextbookIsHandOut())
+            .append("score", getScore())
+            .append("scoreBy", getScoreBy())
+            .append("remark", getRemark())
+            .append("companyName", getCompanyName())
+            .append("entryDate", getEntryDate())
+            .append("companyAddress", getCompanyAddress())
+            .append("contactName", getContactName())
+            .append("companyPhone", getCompanyPhone())
+            .append("poorHouseholdsIs", getPoorHouseholdsIs())
+            .append("registerDate", getRegisterDate())
+            .append("enrollmentDate", getEnrollmentDate())
+            .append("receivableIncidentals", getReceivableIncidentals())
+            .append("receivableQuarterage", getReceivableQuarterage())
+            .append("officialIncidentals", getOfficialIncidentals())
+            .append("incidentalsBillNo", getIncidentalsBillNo())
+            .append("officialQuarterage", getOfficialQuarterage())
+            .append("quarterageBillNo", getQuarterageBillNo())
+            .append("chargerName", getChargerName())
+            .append("paymentDate", getPaymentDate())
+            .append("drawer", getDrawer())
+            .append("contactTeacher", getContactTeacher())
+            .append("incidentalsBillSerial", getIncidentalsBillSerial())
+            .append("firstLowHalfIs", getFirstLowHalfIs())
+            .append("secondUpHalfIs", getSecondUpHalfIs())
+            .append("secondLowHalfIs", getSecondLowHalfIs())
+            .append("thirdUpHalfIs", getThirdUpHalfIs())
+            .append("thirdLowHalfIs", getThirdLowHalfIs())
+            .append("chargeTimes", getChargeTimes())
+            .append("createBy", getCreateBy())
+            .append("createTime", getCreateTime())
+            .append("updateBy", getUpdateBy())
+            .append("updateTime", getUpdateTime())
+            .toString();
+    }
+}

+ 174 - 0
ruoyi-system/src/main/java/com/ruoyi/system/domain/StuClass.java

@@ -0,0 +1,174 @@
+package com.ruoyi.system.domain;
+
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+import com.ruoyi.common.annotation.Excel;
+import com.ruoyi.common.core.domain.BaseEntity;
+
+/**
+ * 班级对象 stu_class
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+public class StuClass extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** 主键id */
+    private Long id;
+
+    /** 专业id */
+    @Excel(name = "专业id")
+    private Long professionId;
+    private String professionName;
+
+    private Long departmentId;
+    private String departmentName;
+
+    private Long collegeId;
+    private String collegeName;
+
+    /** 班级名称 */
+    @Excel(name = "班级名称")
+    private String className;
+
+    /** $column.columnComment */
+    @Excel(name = "班级名称")
+    private String classTeacher;
+
+    /** 年级 */
+    @Excel(name = "年级")
+    private Long grade;
+
+    /** 毕业状态 */
+    @Excel(name = "毕业状态")
+    private Long graduationStatus;
+
+    /** 删除状态 */
+    @Excel(name = "删除状态")
+    private Long delStatus;
+
+    public void setId(Long id)
+    {
+        this.id = id;
+    }
+
+    public Long getId()
+    {
+        return id;
+    }
+    public void setProfessionId(Long professionId)
+    {
+        this.professionId = professionId;
+    }
+
+    public Long getProfessionId()
+    {
+        return professionId;
+    }
+    public void setClassName(String className)
+    {
+        this.className = className;
+    }
+
+    public String getClassName()
+    {
+        return className;
+    }
+    public void setClassTeacher(String classTeacher)
+    {
+        this.classTeacher = classTeacher;
+    }
+
+    public String getClassTeacher()
+    {
+        return classTeacher;
+    }
+    public void setGrade(Long grade)
+    {
+        this.grade = grade;
+    }
+
+    public Long getGrade()
+    {
+        return grade;
+    }
+    public void setGraduationStatus(Long graduationStatus)
+    {
+        this.graduationStatus = graduationStatus;
+    }
+
+    public Long getGraduationStatus()
+    {
+        return graduationStatus;
+    }
+    public void setDelStatus(Long delStatus)
+    {
+        this.delStatus = delStatus;
+    }
+
+    public Long getDelStatus()
+    {
+        return delStatus;
+    }
+
+    public String getProfessionName() {
+        return professionName;
+    }
+
+    public void setProfessionName(String professionName) {
+        this.professionName = professionName;
+    }
+
+    public Long getDepartmentId() {
+        return departmentId;
+    }
+
+    public void setDepartmentId(Long departmentId) {
+        this.departmentId = departmentId;
+    }
+
+    public String getDepartmentName() {
+        return departmentName;
+    }
+
+    public void setDepartmentName(String departmentName) {
+        this.departmentName = departmentName;
+    }
+
+    public Long getCollegeId() {
+        return collegeId;
+    }
+
+    public void setCollegeId(Long collegeId) {
+        this.collegeId = collegeId;
+    }
+
+    public String getCollegeName() {
+        return collegeName;
+    }
+
+    public void setCollegeName(String collegeName) {
+        this.collegeName = collegeName;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("professionId", getProfessionId())
+            .append("professionName",getProfessionName())
+            .append("className", getClassName())
+            .append("classTeacher", getClassTeacher())
+            .append("grade", getGrade())
+            .append("graduationStatus", getGraduationStatus())
+            .append("remark", getRemark())
+            .append("delStatus", getDelStatus())
+            .append("createBy", getCreateBy())
+            .append("createTime", getCreateTime())
+            .append("updateBy", getUpdateBy())
+            .append("updateTime", getUpdateTime())
+            .toString();
+    }
+}

+ 56 - 0
ruoyi-system/src/main/java/com/ruoyi/system/domain/StuCollege.java

@@ -0,0 +1,56 @@
+package com.ruoyi.system.domain;
+
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+import com.ruoyi.common.annotation.Excel;
+import com.ruoyi.common.core.domain.BaseEntity;
+
+/**
+ * 学院对象 stu_college
+ * 
+ * @author liql
+ * @date 2021-03-23
+ */
+public class StuCollege extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** 主键id */
+    private Long id;
+
+    /** 院校名称 */
+    @Excel(name = "院校名称")
+    private String collegeName;
+
+    public void setId(Long id) 
+    {
+        this.id = id;
+    }
+
+    public Long getId() 
+    {
+        return id;
+    }
+    public void setCollegeName(String collegeName) 
+    {
+        this.collegeName = collegeName;
+    }
+
+    public String getCollegeName() 
+    {
+        return collegeName;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("collegeName", getCollegeName())
+            .append("remark", getRemark())
+            .append("createBy", getCreateBy())
+            .append("createTime", getCreateTime())
+            .append("updateBy", getUpdateBy())
+            .append("updateTime", getUpdateTime())
+            .toString();
+    }
+}

+ 95 - 0
ruoyi-system/src/main/java/com/ruoyi/system/domain/StuDepartment.java

@@ -0,0 +1,95 @@
+package com.ruoyi.system.domain;
+
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+import com.ruoyi.common.annotation.Excel;
+import com.ruoyi.common.core.domain.BaseEntity;
+
+/**
+ * 科系对象 stu_department
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+public class StuDepartment extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** 主键id */
+    private Long id;
+
+    /** 院校id */
+    @Excel(name = "院校id")
+    private Long collegeId;
+
+    private String collegeName;
+
+    /** 系名称 */
+    @Excel(name = "系名称")
+    private String departmentName;
+
+    /** 删除状态(0正常,1删除) */
+    @Excel(name = "删除状态(0正常,1删除)")
+    private Long delStatus;
+
+    public void setId(Long id)
+    {
+        this.id = id;
+    }
+
+    public Long getId()
+    {
+        return id;
+    }
+    public void setCollegeId(Long collegeId)
+    {
+        this.collegeId = collegeId;
+    }
+
+    public Long getCollegeId()
+    {
+        return collegeId;
+    }
+    public void setDepartmentName(String departmentName)
+    {
+        this.departmentName = departmentName;
+    }
+
+    public String getDepartmentName()
+    {
+        return departmentName;
+    }
+    public void setDelStatus(Long delStatus)
+    {
+        this.delStatus = delStatus;
+    }
+
+    public Long getDelStatus()
+    {
+        return delStatus;
+    }
+
+    public String getCollegeName() {
+        return collegeName;
+    }
+
+    public void setCollegeName(String collegeName) {
+        this.collegeName = collegeName;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("collegeId", getCollegeId())
+            .append("collegeName", getCollegeName())
+            .append("departmentName", getDepartmentName())
+            .append("delStatus", getDelStatus())
+            .append("remark", getRemark())
+            .append("createBy", getCreateBy())
+            .append("createTime", getCreateTime())
+            .append("updateBy", getUpdateBy())
+            .append("updateTime", getUpdateTime())
+            .toString();
+    }
+}

+ 113 - 0
ruoyi-system/src/main/java/com/ruoyi/system/domain/StuProfession.java

@@ -0,0 +1,113 @@
+package com.ruoyi.system.domain;
+
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+import com.ruoyi.common.annotation.Excel;
+import com.ruoyi.common.core.domain.BaseEntity;
+
+/**
+ * 专业对象 stu_profession
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+public class StuProfession extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** 主键id */
+    private Long id;
+
+    /** 科系id */
+    @Excel(name = "科系id")
+    private Long departmentId;
+    private String departmentName;
+
+    private Long collegeId;
+    private String collegeName;
+
+    /** 专业名称 */
+    @Excel(name = "专业名称")
+    private String professionName;
+
+    /** 删除状态(0正常,1删除) */
+    @Excel(name = "删除状态(0正常,1删除)")
+    private Long delStatus;
+
+    public void setId(Long id)
+    {
+        this.id = id;
+    }
+
+    public Long getId()
+    {
+        return id;
+    }
+    public void setDepartmentId(Long departmentId)
+    {
+        this.departmentId = departmentId;
+    }
+
+    public Long getDepartmentId()
+    {
+        return departmentId;
+    }
+    public void setProfessionName(String professionName)
+    {
+        this.professionName = professionName;
+    }
+
+    public String getProfessionName()
+    {
+        return professionName;
+    }
+    public void setDelStatus(Long delStatus)
+    {
+        this.delStatus = delStatus;
+    }
+
+    public Long getDelStatus()
+    {
+        return delStatus;
+    }
+
+    public String getDepartmentName() {
+        return departmentName;
+    }
+
+    public void setDepartmentName(String departmentName) {
+        this.departmentName = departmentName;
+    }
+
+    public Long getCollegeId() {
+        return collegeId;
+    }
+
+    public void setCollegeId(Long collegeId) {
+        this.collegeId = collegeId;
+    }
+
+    public String getCollegeName() {
+        return collegeName;
+    }
+
+    public void setCollegeName(String collegeName) {
+        this.collegeName = collegeName;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("departmentId", getDepartmentId())
+            .append("professionName", getProfessionName())
+            .append("departmentName", getDepartmentName())
+            .append("remark", getRemark())
+            .append("delStatus", getDelStatus())
+            .append("createBy", getCreateBy())
+            .append("createTime", getCreateTime())
+            .append("updateBy", getUpdateBy())
+            .append("updateTime", getUpdateTime())
+            .toString();
+    }
+}

+ 23 - 0
ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/StudentGraduationStatusVo.java

@@ -0,0 +1,23 @@
+package com.ruoyi.system.domain.vo;
+
+public class StudentGraduationStatusVo {
+
+    private Long id;
+    private Long studentStatus;
+
+    public Long getId() {
+        return id;
+    }
+
+    public void setId(Long id) {
+        this.id = id;
+    }
+
+    public Long getStudentStatus() {
+        return studentStatus;
+    }
+
+    public void setStudentStatus(Long studentStatus) {
+        this.studentStatus = studentStatus;
+    }
+}

+ 91 - 0
ruoyi-system/src/main/java/com/ruoyi/system/mapper/StuBaseInfoMapper.java

@@ -0,0 +1,91 @@
+package com.ruoyi.system.mapper;
+
+import com.ruoyi.system.domain.StuBaseInfo;
+import com.ruoyi.system.domain.vo.StudentGraduationStatusVo;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
+
+/**
+ * 学生Mapper接口
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+public interface StuBaseInfoMapper
+{
+    /**
+     * 查询学生
+     *
+     * @param id 学生ID
+     * @return 学生
+     */
+    public StuBaseInfo selectStuBaseInfoById(Long id);
+
+    /**
+     * 查询学生列表
+     *
+     * @param stuBaseInfo 学生
+     * @return 学生集合
+     */
+    public List<StuBaseInfo> selectStuBaseInfoList(StuBaseInfo stuBaseInfo);
+
+    /**
+     * 新增学生
+     *
+     * @param stuBaseInfo 学生
+     * @return 结果
+     */
+    public int insertStuBaseInfo(StuBaseInfo stuBaseInfo);
+
+    /**
+     * 修改学生
+     *
+     * @param stuBaseInfo 学生
+     * @return 结果
+     */
+    public int updateStuBaseInfo(StuBaseInfo stuBaseInfo);
+
+    /**
+     * 根据身份证修改
+     * @param stuBaseInfo
+     * @return
+     */
+    public int updateStuBaseInfoByNumber(StuBaseInfo stuBaseInfo);
+
+    /**
+     * 删除学生
+     *
+     * @param id 学生ID
+     * @return 结果
+     */
+    public int deleteStuBaseInfoById(Long id);
+
+    /**
+     * 批量删除学生
+     *
+     * @param ids 需要删除的数据ID
+     * @return 结果
+     */
+    public int deleteStuBaseInfoByIds(Long[] ids);
+
+    /**
+     * 根据身份证号获取学生信息
+     * @param idCardNumber
+     * @return StuBaseInfo 对象
+     */
+    public StuBaseInfo selectStudentByIDNumber(@Param("idCardNumber") String idCardNumber);
+
+    /**
+     * 查询要毕业的学生
+     * @return
+     */
+    public List<StudentGraduationStatusVo> selectGraduationStudent();
+
+    /**
+     * 更新毕业学生的状态
+     * @param vo
+     * @return
+     */
+    public int updateStudentStatus(StudentGraduationStatusVo vo);
+}

+ 71 - 0
ruoyi-system/src/main/java/com/ruoyi/system/mapper/StuClassMapper.java

@@ -0,0 +1,71 @@
+package com.ruoyi.system.mapper;
+
+import java.util.List;
+import java.util.Map;
+
+import com.ruoyi.system.domain.StuClass;
+import org.apache.ibatis.annotations.Param;
+
+/**
+ * 班级Mapper接口
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+public interface StuClassMapper
+{
+    /**
+     * 查询班级
+     *
+     * @param id 班级ID
+     * @return 班级
+     */
+    public StuClass selectStuClassById(Long id);
+
+    /**
+     * 查询班级列表
+     *
+     * @param stuClass 班级
+     * @return 班级集合
+     */
+    public List<StuClass> selectStuClassList(StuClass stuClass);
+
+    /**
+     * 新增班级
+     *
+     * @param stuClass 班级
+     * @return 结果
+     */
+    public int insertStuClass(StuClass stuClass);
+
+    /**
+     * 修改班级
+     *
+     * @param stuClass 班级
+     * @return 结果
+     */
+    public int updateStuClass(StuClass stuClass);
+
+    /**
+     * 删除班级
+     *
+     * @param id 班级ID
+     * @return 结果
+     */
+    public int deleteStuClassById(Long id);
+
+    /**
+     * 批量删除班级
+     *
+     * @param ids 需要删除的数据ID
+     * @return 结果
+     */
+    public int deleteStuClassByIds(Long[] ids);
+
+    /**
+     * 根据专业id查询班列表
+     * @param professionId
+     * @return
+     */
+    public List<Map<String,Object>> queryList(@Param("professionId") Long professionId);
+}

+ 61 - 0
ruoyi-system/src/main/java/com/ruoyi/system/mapper/StuCollegeMapper.java

@@ -0,0 +1,61 @@
+package com.ruoyi.system.mapper;
+
+import java.util.List;
+import com.ruoyi.system.domain.StuCollege;
+
+/**
+ * 学院Mapper接口
+ * 
+ * @author liql
+ * @date 2021-03-23
+ */
+public interface StuCollegeMapper 
+{
+    /**
+     * 查询学院
+     * 
+     * @param id 学院ID
+     * @return 学院
+     */
+    public StuCollege selectStuCollegeById(Long id);
+
+    /**
+     * 查询学院列表
+     * 
+     * @param stuCollege 学院
+     * @return 学院集合
+     */
+    public List<StuCollege> selectStuCollegeList(StuCollege stuCollege);
+
+    /**
+     * 新增学院
+     * 
+     * @param stuCollege 学院
+     * @return 结果
+     */
+    public int insertStuCollege(StuCollege stuCollege);
+
+    /**
+     * 修改学院
+     * 
+     * @param stuCollege 学院
+     * @return 结果
+     */
+    public int updateStuCollege(StuCollege stuCollege);
+
+    /**
+     * 删除学院
+     * 
+     * @param id 学院ID
+     * @return 结果
+     */
+    public int deleteStuCollegeById(Long id);
+
+    /**
+     * 批量删除学院
+     * 
+     * @param ids 需要删除的数据ID
+     * @return 结果
+     */
+    public int deleteStuCollegeByIds(Long[] ids);
+}

+ 71 - 0
ruoyi-system/src/main/java/com/ruoyi/system/mapper/StuDepartmentMapper.java

@@ -0,0 +1,71 @@
+package com.ruoyi.system.mapper;
+
+import java.util.List;
+import java.util.Map;
+
+import com.ruoyi.system.domain.StuDepartment;
+import org.apache.ibatis.annotations.Param;
+
+/**
+ * 科系Mapper接口
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+public interface StuDepartmentMapper
+{
+    /**
+     * 查询科系
+     *
+     * @param id 科系ID
+     * @return 科系
+     */
+    public StuDepartment selectStuDepartmentById(Long id);
+
+    /**
+     * 查询科系列表
+     *
+     * @param stuDepartment 科系
+     * @return 科系集合
+     */
+    public List<StuDepartment> selectStuDepartmentList(StuDepartment stuDepartment);
+
+    /**
+     * 新增科系
+     *
+     * @param stuDepartment 科系
+     * @return 结果
+     */
+    public int insertStuDepartment(StuDepartment stuDepartment);
+
+    /**
+     * 修改科系
+     *
+     * @param stuDepartment 科系
+     * @return 结果
+     */
+    public int updateStuDepartment(StuDepartment stuDepartment);
+
+    /**
+     * 删除科系
+     *
+     * @param id 科系ID
+     * @return 结果
+     */
+    public int deleteStuDepartmentById(Long id);
+
+    /**
+     * 批量删除科系
+     *
+     * @param ids 需要删除的数据ID
+     * @return 结果
+     */
+    public int deleteStuDepartmentByIds(Long[] ids);
+
+    /**
+     * 根据学院id查询科系列表
+     * @param collegeId
+     * @return
+     */
+    public List<Map<String,Object>> queryList(@Param("collegeId") Long collegeId);
+}

+ 76 - 0
ruoyi-system/src/main/java/com/ruoyi/system/mapper/StuProfessionMapper.java

@@ -0,0 +1,76 @@
+package com.ruoyi.system.mapper;
+
+import java.util.List;
+import java.util.Map;
+
+import com.ruoyi.system.domain.StuProfession;
+import org.apache.ibatis.annotations.Param;
+
+/**
+ * 专业Mapper接口
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+public interface StuProfessionMapper
+{
+    /**
+     * 查询专业
+     *
+     * @param id 专业ID
+     * @return 专业
+     */
+    public StuProfession selectStuProfessionById(Long id);
+
+    /**
+     * 查询专业列表
+     *
+     * @param stuProfession 专业
+     * @return 专业集合
+     */
+    public List<StuProfession> selectStuProfessionList(StuProfession stuProfession);
+
+    /**
+     * 新增专业
+     *
+     * @param stuProfession 专业
+     * @return 结果
+     */
+    public int insertStuProfession(StuProfession stuProfession);
+
+    /**
+     * 修改专业
+     *
+     * @param stuProfession 专业
+     * @return 结果
+     */
+    public int updateStuProfession(StuProfession stuProfession);
+
+    /**
+     * 删除专业
+     *
+     * @param id 专业ID
+     * @return 结果
+     */
+    public int deleteStuProfessionById(Long id);
+
+    /**
+     * 批量删除专业
+     *
+     * @param ids 需要删除的数据ID
+     * @return 结果
+     */
+    public int deleteStuProfessionByIds(Long[] ids);
+
+    /**
+     * 根据科系id查询专业列表
+     * @param departmentId
+     * @return
+     */
+    public List<Map<String,Object>> queryList(@Param("departmentId") Long departmentId);
+
+    /**
+     * 根据专业名称查询专业
+     */
+    public StuProfession selectProfessionByProfessionName(@Param("professionName") String professonName);
+}

+ 74 - 0
ruoyi-system/src/main/java/com/ruoyi/system/service/IStuBaseInfoService.java

@@ -0,0 +1,74 @@
+package com.ruoyi.system.service;
+
+import com.ruoyi.common.core.domain.entity.SysUser;
+import com.ruoyi.system.domain.StuBaseInfo;
+
+import java.util.List;
+
+/**
+ * 学生Service接口
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+public interface IStuBaseInfoService
+{
+    /**
+     * 查询学生
+     *
+     * @param id 学生ID
+     * @return 学生
+     */
+    public StuBaseInfo selectStuBaseInfoById(Long id);
+
+    /**
+     * 查询学生列表
+     *
+     * @param stuBaseInfo 学生
+     * @return 学生集合
+     */
+    public List<StuBaseInfo> selectStuBaseInfoList(StuBaseInfo stuBaseInfo);
+
+    /**
+     * 新增学生
+     *
+     * @param stuBaseInfo 学生
+     * @return 结果
+     */
+    public int insertStuBaseInfo(StuBaseInfo stuBaseInfo);
+
+    /**
+     * 修改学生
+     *
+     * @param stuBaseInfo 学生
+     * @return 结果
+     */
+    public int updateStuBaseInfo(StuBaseInfo stuBaseInfo);
+
+    /**
+     * 批量删除学生
+     *
+     * @param ids 需要删除的学生ID
+     * @return 结果
+     */
+    public int deleteStuBaseInfoByIds(Long[] ids);
+
+    /**
+     * 删除学生信息
+     *
+     * @param id 学生ID
+     * @return 结果
+     */
+    public int deleteStuBaseInfoById(Long id);
+
+    /**
+     *  导入学生数据
+     * @param stuBaseInfoList 用户列表
+     * @param isUpdateSupport 是否更新支持,如果已存在,则进行更新数据
+     * @param operName 操作用户
+     * @return 结果
+     */
+    public String importBaseInfo(List<StuBaseInfo> stuBaseInfoList, Boolean isUpdateSupport, String operName);
+
+
+}

+ 70 - 0
ruoyi-system/src/main/java/com/ruoyi/system/service/IStuClassService.java

@@ -0,0 +1,70 @@
+package com.ruoyi.system.service;
+
+import java.util.List;
+import java.util.Map;
+
+import com.ruoyi.system.domain.StuClass;
+
+/**
+ * 班级Service接口
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+public interface IStuClassService
+{
+    /**
+     * 查询班级
+     *
+     * @param id 班级ID
+     * @return 班级
+     */
+    public StuClass selectStuClassById(Long id);
+
+    /**
+     * 查询班级列表
+     *
+     * @param stuClass 班级
+     * @return 班级集合
+     */
+    public List<StuClass> selectStuClassList(StuClass stuClass);
+
+    /**
+     * 新增班级
+     *
+     * @param stuClass 班级
+     * @return 结果
+     */
+    public int insertStuClass(StuClass stuClass);
+
+    /**
+     * 修改班级
+     *
+     * @param stuClass 班级
+     * @return 结果
+     */
+    public int updateStuClass(StuClass stuClass);
+
+    /**
+     * 批量删除班级
+     *
+     * @param ids 需要删除的班级ID
+     * @return 结果
+     */
+    public int deleteStuClassByIds(Long[] ids);
+
+    /**
+     * 删除班级信息
+     *
+     * @param id 班级ID
+     * @return 结果
+     */
+    public int deleteStuClassById(Long id);
+
+    /**
+     * 根据专业id查询班级列表
+     * @param professionId
+     * @return
+     */
+    public List<Map<String,Object>> queryList(Long professionId);
+}

+ 61 - 0
ruoyi-system/src/main/java/com/ruoyi/system/service/IStuCollegeService.java

@@ -0,0 +1,61 @@
+package com.ruoyi.system.service;
+
+import java.util.List;
+import com.ruoyi.system.domain.StuCollege;
+
+/**
+ * 学院Service接口
+ * 
+ * @author liql
+ * @date 2021-03-23
+ */
+public interface IStuCollegeService 
+{
+    /**
+     * 查询学院
+     * 
+     * @param id 学院ID
+     * @return 学院
+     */
+    public StuCollege selectStuCollegeById(Long id);
+
+    /**
+     * 查询学院列表
+     * 
+     * @param stuCollege 学院
+     * @return 学院集合
+     */
+    public List<StuCollege> selectStuCollegeList(StuCollege stuCollege);
+
+    /**
+     * 新增学院
+     * 
+     * @param stuCollege 学院
+     * @return 结果
+     */
+    public int insertStuCollege(StuCollege stuCollege);
+
+    /**
+     * 修改学院
+     * 
+     * @param stuCollege 学院
+     * @return 结果
+     */
+    public int updateStuCollege(StuCollege stuCollege);
+
+    /**
+     * 批量删除学院
+     * 
+     * @param ids 需要删除的学院ID
+     * @return 结果
+     */
+    public int deleteStuCollegeByIds(Long[] ids);
+
+    /**
+     * 删除学院信息
+     * 
+     * @param id 学院ID
+     * @return 结果
+     */
+    public int deleteStuCollegeById(Long id);
+}

+ 72 - 0
ruoyi-system/src/main/java/com/ruoyi/system/service/IStuDepartmentService.java

@@ -0,0 +1,72 @@
+package com.ruoyi.system.service;
+
+import java.util.List;
+import java.util.Map;
+
+import com.ruoyi.system.domain.StuDepartment;
+import org.apache.ibatis.annotations.Param;
+
+/**
+ * 科系Service接口
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+public interface IStuDepartmentService
+{
+    /**
+     * 查询科系
+     *
+     * @param id 科系ID
+     * @return 科系
+     */
+    public StuDepartment selectStuDepartmentById(Long id);
+
+    /**
+     * 查询科系列表
+     *
+     * @param stuDepartment 科系
+     * @return 科系集合
+     */
+    public List<StuDepartment> selectStuDepartmentList(StuDepartment stuDepartment);
+
+    /**
+     * 新增科系
+     *
+     * @param stuDepartment 科系
+     * @return 结果
+     */
+    public int insertStuDepartment(StuDepartment stuDepartment);
+
+    /**
+     * 修改科系
+     *
+     * @param stuDepartment 科系
+     * @return 结果
+     */
+    public int updateStuDepartment(StuDepartment stuDepartment);
+
+    /**
+     * 批量删除科系
+     *
+     * @param ids 需要删除的科系ID
+     * @return 结果
+     */
+    public int deleteStuDepartmentByIds(Long[] ids);
+
+    /**
+     * 删除科系信息
+     *
+     * @param id 科系ID
+     * @return 结果
+     */
+    public int deleteStuDepartmentById(Long id);
+
+    /**
+     * 根据学院id查询科系列表
+     * @param collegeId
+     * @return
+     */
+    public List<Map<String,Object>> queryList(Long collegeId);
+
+}

+ 70 - 0
ruoyi-system/src/main/java/com/ruoyi/system/service/IStuProfessionService.java

@@ -0,0 +1,70 @@
+package com.ruoyi.system.service;
+
+import java.util.List;
+import java.util.Map;
+
+import com.ruoyi.system.domain.StuProfession;
+
+/**
+ * 专业Service接口
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+public interface IStuProfessionService
+{
+    /**
+     * 查询专业
+     *
+     * @param id 专业ID
+     * @return 专业
+     */
+    public StuProfession selectStuProfessionById(Long id);
+
+    /**
+     * 查询专业列表
+     *
+     * @param stuProfession 专业
+     * @return 专业集合
+     */
+    public List<StuProfession> selectStuProfessionList(StuProfession stuProfession);
+
+    /**
+     * 新增专业
+     *
+     * @param stuProfession 专业
+     * @return 结果
+     */
+    public int insertStuProfession(StuProfession stuProfession);
+
+    /**
+     * 修改专业
+     *
+     * @param stuProfession 专业
+     * @return 结果
+     */
+    public int updateStuProfession(StuProfession stuProfession);
+
+    /**
+     * 批量删除专业
+     *
+     * @param ids 需要删除的专业ID
+     * @return 结果
+     */
+    public int deleteStuProfessionByIds(Long[] ids);
+
+    /**
+     * 删除专业信息
+     *
+     * @param id 专业ID
+     * @return 结果
+     */
+    public int deleteStuProfessionById(Long id);
+
+    /**
+     * 根据科系id查询班级列表
+     * @param departmentId
+     * @return
+     */
+    public List<Map<String,Object>> queryList(Long departmentId);
+}

+ 196 - 0
ruoyi-system/src/main/java/com/ruoyi/system/service/impl/StuBaseInfoServiceImpl.java

@@ -0,0 +1,196 @@
+package com.ruoyi.system.service.impl;
+
+import java.util.List;
+
+import com.ruoyi.common.core.domain.entity.SysUser;
+import com.ruoyi.common.exception.CustomException;
+import com.ruoyi.common.utils.DateUtils;
+import com.ruoyi.common.utils.SecurityUtils;
+import com.ruoyi.common.utils.StringUtils;
+import com.ruoyi.system.domain.StuBaseInfo;
+import com.ruoyi.system.domain.StuProfession;
+import com.ruoyi.system.mapper.StuBaseInfoMapper;
+import com.ruoyi.system.mapper.StuProfessionMapper;
+import com.ruoyi.system.service.IStuBaseInfoService;
+import org.apache.commons.lang3.ObjectUtils;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import javax.annotation.Resource;
+
+/**
+ * 学生Service业务层处理
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+@Service
+public class StuBaseInfoServiceImpl implements IStuBaseInfoService
+{
+    private static final Logger log = LoggerFactory.getLogger(StuBaseInfoServiceImpl.class);
+    @Resource
+    private StuBaseInfoMapper stuBaseInfoMapper;
+    @Resource
+    private StuProfessionMapper stuProfessionMapper;
+
+    /**
+     * 查询学生
+     *
+     * @param id 学生ID
+     * @return 学生
+     */
+    @Override
+    public StuBaseInfo selectStuBaseInfoById(Long id)
+    {
+        return stuBaseInfoMapper.selectStuBaseInfoById(id);
+    }
+
+    /**
+     * 查询学生列表
+     *
+     * @param stuBaseInfo 学生
+     * @return 学生
+     */
+    @Override
+    public List<StuBaseInfo> selectStuBaseInfoList(StuBaseInfo stuBaseInfo)
+    {
+        return stuBaseInfoMapper.selectStuBaseInfoList(stuBaseInfo);
+    }
+
+    /**
+     * 新增学生
+     *
+     * @param stuBaseInfo 学生
+     * @return 结果
+     */
+    @Override
+    public int insertStuBaseInfo(StuBaseInfo stuBaseInfo)
+    {
+        stuBaseInfo.setCreateTime(DateUtils.getNowDate());
+        return stuBaseInfoMapper.insertStuBaseInfo(stuBaseInfo);
+    }
+
+    /**
+     * 修改学生
+     *
+     * @param stuBaseInfo 学生
+     * @return 结果
+     */
+    @Override
+    public int updateStuBaseInfo(StuBaseInfo stuBaseInfo)
+    {
+        stuBaseInfo.setUpdateTime(DateUtils.getNowDate());
+        Long studentStatus = stuBaseInfo.getStudentStatus()==null?0:stuBaseInfo.getStudentStatus();
+
+
+        if(studentStatus>=2 && studentStatus<8){
+            Long chargeTimes = 1L;
+            Long firstLowHalfIs = stuBaseInfo.getFirstLowHalfIs()==null?0:stuBaseInfo.getFirstLowHalfIs();
+            Long secondUpHalfIs = stuBaseInfo.getSecondUpHalfIs()==null?0:stuBaseInfo.getSecondUpHalfIs();
+            Long secondLowHalfIs = stuBaseInfo.getSecondLowHalfIs()==null?0:stuBaseInfo.getSecondLowHalfIs();
+            Long thirdUpHalfIs = stuBaseInfo.getThirdUpHalfIs()==null?0:stuBaseInfo.getThirdUpHalfIs();
+            Long thirdLowHalfIs = stuBaseInfo.getThirdLowHalfIs()==null?0:stuBaseInfo.getThirdLowHalfIs();
+
+            chargeTimes+=firstLowHalfIs;
+            chargeTimes+=secondUpHalfIs;
+            chargeTimes+=secondLowHalfIs;
+            chargeTimes+=thirdUpHalfIs;
+            chargeTimes+=thirdLowHalfIs;
+
+            stuBaseInfo.setChargeTimes(chargeTimes);
+            //stuBaseInfo.setStudentStatus(++chargeTimes);
+        }
+
+
+
+        return stuBaseInfoMapper.updateStuBaseInfo(stuBaseInfo);
+    }
+
+    /**
+     * 批量删除学生
+     *
+     * @param ids 需要删除的学生ID
+     * @return 结果
+     */
+    @Override
+    public int deleteStuBaseInfoByIds(Long[] ids)
+    {
+        return stuBaseInfoMapper.deleteStuBaseInfoByIds(ids);
+    }
+
+    /**
+     * 删除学生信息
+     *
+     * @param id 学生ID
+     * @return 结果
+     */
+    @Override
+    public int deleteStuBaseInfoById(Long id)
+    {
+        return stuBaseInfoMapper.deleteStuBaseInfoById(id);
+    }
+
+
+    /**
+     * 导入用户数据
+     *
+     * @param stuBaseInfoList        用户数据列表
+     * @param isUpdateSupport 是否更新支持,如果已存在,则进行更新数据
+     * @param operName        操作用户
+     * @return 结果
+     */
+    @Override
+    public String importBaseInfo(List<StuBaseInfo> stuBaseInfoList, Boolean isUpdateSupport, String operName) {
+        if (StringUtils.isNull(stuBaseInfoList) || stuBaseInfoList.size() == 0) {
+            throw new CustomException("导入用户数据不能为空!");
+        }
+        int successNum = 0;
+        int failureNum = 0;
+        StringBuilder successMsg = new StringBuilder();
+        StringBuilder failureMsg = new StringBuilder();
+        for (StuBaseInfo student : stuBaseInfoList) {
+            String idCardNumber = student.getIdCardNumber();
+            try {
+                // 验证是否存在这个用户
+                StuBaseInfo t = stuBaseInfoMapper.selectStudentByIDNumber(idCardNumber);
+                if (StringUtils.isNull(t)) {
+                    String professionName = student.getProfessionName();
+                    StuProfession profession = stuProfessionMapper.selectProfessionByProfessionName(professionName);
+                    if(null!=profession){
+                        student.setProfessionId(profession.getId());
+                        student.setCreateBy(operName);
+                        this.insertStuBaseInfo(student);
+                        successNum++;
+                        successMsg.append("<br/>" + successNum + "、身份证号 " + idCardNumber + " 导入成功");
+                    }else{
+                        failureNum++;
+                        failureMsg.append("<br/>" + failureNum + "、身份证号 " + idCardNumber + " 所选的专业不正在");
+                    }
+
+                } else if (isUpdateSupport) {
+                    student.setUpdateBy(operName);
+                    stuBaseInfoMapper.updateStuBaseInfoByNumber(student);
+                    successNum++;
+                    successMsg.append("<br/>" + successNum + "、身份证号 " + idCardNumber + " 更新成功");
+                } else {
+                    failureNum++;
+                    failureMsg.append("<br/>" + failureNum + "、身份证号 " + idCardNumber + " 已存在");
+                }
+            } catch (Exception e) {
+                failureNum++;
+                String msg = "<br/>" + failureNum + "、身份证号 " + idCardNumber + " 导入失败:";
+                failureMsg.append(msg + e.getMessage());
+                log.error(msg, e);
+            }
+        }
+        if (failureNum > 0) {
+            failureMsg.insert(0, "很抱歉,导入失败!共 " + failureNum + " 条数据格式不正确,错误如下:");
+            throw new CustomException(failureMsg.toString());
+        } else {
+            successMsg.insert(0, "恭喜您,数据已全部导入成功!共 " + successNum + " 条,数据如下:");
+        }
+        return successMsg.toString();
+    }
+}

+ 109 - 0
ruoyi-system/src/main/java/com/ruoyi/system/service/impl/StuClassServiceImpl.java

@@ -0,0 +1,109 @@
+package com.ruoyi.system.service.impl;
+
+import java.util.List;
+import java.util.Map;
+
+import com.ruoyi.common.utils.DateUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import com.ruoyi.system.mapper.StuClassMapper;
+import com.ruoyi.system.domain.StuClass;
+import com.ruoyi.system.service.IStuClassService;
+
+/**
+ * 班级Service业务层处理
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+@Service
+public class StuClassServiceImpl implements IStuClassService
+{
+    @Autowired
+    private StuClassMapper stuClassMapper;
+
+    /**
+     * 查询班级
+     *
+     * @param id 班级ID
+     * @return 班级
+     */
+    @Override
+    public StuClass selectStuClassById(Long id)
+    {
+        return stuClassMapper.selectStuClassById(id);
+    }
+
+    /**
+     * 查询班级列表
+     *
+     * @param stuClass 班级
+     * @return 班级
+     */
+    @Override
+    public List<StuClass> selectStuClassList(StuClass stuClass)
+    {
+        return stuClassMapper.selectStuClassList(stuClass);
+    }
+
+    /**
+     * 新增班级
+     *
+     * @param stuClass 班级
+     * @return 结果
+     */
+    @Override
+    public int insertStuClass(StuClass stuClass)
+    {
+        stuClass.setCreateTime(DateUtils.getNowDate());
+        return stuClassMapper.insertStuClass(stuClass);
+    }
+
+    /**
+     * 修改班级
+     *
+     * @param stuClass 班级
+     * @return 结果
+     */
+    @Override
+    public int updateStuClass(StuClass stuClass)
+    {
+        stuClass.setUpdateTime(DateUtils.getNowDate());
+        return stuClassMapper.updateStuClass(stuClass);
+    }
+
+    /**
+     * 批量删除班级
+     *
+     * @param ids 需要删除的班级ID
+     * @return 结果
+     */
+    @Override
+    public int deleteStuClassByIds(Long[] ids)
+    {
+        return stuClassMapper.deleteStuClassByIds(ids);
+    }
+
+    /**
+     * 删除班级信息
+     *
+     * @param id 班级ID
+     * @return 结果
+     */
+    @Override
+    public int deleteStuClassById(Long id)
+    {
+        return stuClassMapper.deleteStuClassById(id);
+    }
+
+    /**
+     * 根据专业id查询班级列表
+     *
+     * @param professionId
+     * @return
+     */
+    @Override
+    public List<Map<String,Object>> queryList(Long professionId) {
+        return stuClassMapper.queryList(professionId);
+    }
+}

+ 96 - 0
ruoyi-system/src/main/java/com/ruoyi/system/service/impl/StuCollegeServiceImpl.java

@@ -0,0 +1,96 @@
+package com.ruoyi.system.service.impl;
+
+import java.util.List;
+import com.ruoyi.common.utils.DateUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import com.ruoyi.system.mapper.StuCollegeMapper;
+import com.ruoyi.system.domain.StuCollege;
+import com.ruoyi.system.service.IStuCollegeService;
+
+/**
+ * 学院Service业务层处理
+ * 
+ * @author liql
+ * @date 2021-03-23
+ */
+@Service
+public class StuCollegeServiceImpl implements IStuCollegeService 
+{
+    @Autowired
+    private StuCollegeMapper stuCollegeMapper;
+
+    /**
+     * 查询学院
+     * 
+     * @param id 学院ID
+     * @return 学院
+     */
+    @Override
+    public StuCollege selectStuCollegeById(Long id)
+    {
+        return stuCollegeMapper.selectStuCollegeById(id);
+    }
+
+    /**
+     * 查询学院列表
+     * 
+     * @param stuCollege 学院
+     * @return 学院
+     */
+    @Override
+    public List<StuCollege> selectStuCollegeList(StuCollege stuCollege)
+    {
+        return stuCollegeMapper.selectStuCollegeList(stuCollege);
+    }
+
+    /**
+     * 新增学院
+     * 
+     * @param stuCollege 学院
+     * @return 结果
+     */
+    @Override
+    public int insertStuCollege(StuCollege stuCollege)
+    {
+        stuCollege.setCreateTime(DateUtils.getNowDate());
+        return stuCollegeMapper.insertStuCollege(stuCollege);
+    }
+
+    /**
+     * 修改学院
+     * 
+     * @param stuCollege 学院
+     * @return 结果
+     */
+    @Override
+    public int updateStuCollege(StuCollege stuCollege)
+    {
+        stuCollege.setUpdateTime(DateUtils.getNowDate());
+        return stuCollegeMapper.updateStuCollege(stuCollege);
+    }
+
+    /**
+     * 批量删除学院
+     * 
+     * @param ids 需要删除的学院ID
+     * @return 结果
+     */
+    @Override
+    public int deleteStuCollegeByIds(Long[] ids)
+    {
+        return stuCollegeMapper.deleteStuCollegeByIds(ids);
+    }
+
+    /**
+     * 删除学院信息
+     * 
+     * @param id 学院ID
+     * @return 结果
+     */
+    @Override
+    public int deleteStuCollegeById(Long id)
+    {
+        return stuCollegeMapper.deleteStuCollegeById(id);
+    }
+}

+ 109 - 0
ruoyi-system/src/main/java/com/ruoyi/system/service/impl/StuDepartmentServiceImpl.java

@@ -0,0 +1,109 @@
+package com.ruoyi.system.service.impl;
+
+import java.util.List;
+import java.util.Map;
+
+import com.ruoyi.common.utils.DateUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import com.ruoyi.system.mapper.StuDepartmentMapper;
+import com.ruoyi.system.domain.StuDepartment;
+import com.ruoyi.system.service.IStuDepartmentService;
+
+/**
+ * 科系Service业务层处理
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+@Service
+public class StuDepartmentServiceImpl implements IStuDepartmentService
+{
+    @Autowired
+    private StuDepartmentMapper stuDepartmentMapper;
+
+    /**
+     * 查询科系
+     *
+     * @param id 科系ID
+     * @return 科系
+     */
+    @Override
+    public StuDepartment selectStuDepartmentById(Long id)
+    {
+        return stuDepartmentMapper.selectStuDepartmentById(id);
+    }
+
+    /**
+     * 查询科系列表
+     *
+     * @param stuDepartment 科系
+     * @return 科系
+     */
+    @Override
+    public List<StuDepartment> selectStuDepartmentList(StuDepartment stuDepartment)
+    {
+        return stuDepartmentMapper.selectStuDepartmentList(stuDepartment);
+    }
+
+    /**
+     * 新增科系
+     *
+     * @param stuDepartment 科系
+     * @return 结果
+     */
+    @Override
+    public int insertStuDepartment(StuDepartment stuDepartment)
+    {
+        stuDepartment.setCreateTime(DateUtils.getNowDate());
+        return stuDepartmentMapper.insertStuDepartment(stuDepartment);
+    }
+
+    /**
+     * 修改科系
+     *
+     * @param stuDepartment 科系
+     * @return 结果
+     */
+    @Override
+    public int updateStuDepartment(StuDepartment stuDepartment)
+    {
+        stuDepartment.setUpdateTime(DateUtils.getNowDate());
+        return stuDepartmentMapper.updateStuDepartment(stuDepartment);
+    }
+
+    /**
+     * 批量删除科系
+     *
+     * @param ids 需要删除的科系ID
+     * @return 结果
+     */
+    @Override
+    public int deleteStuDepartmentByIds(Long[] ids)
+    {
+        return stuDepartmentMapper.deleteStuDepartmentByIds(ids);
+    }
+
+    /**
+     * 删除科系信息
+     *
+     * @param id 科系ID
+     * @return 结果
+     */
+    @Override
+    public int deleteStuDepartmentById(Long id)
+    {
+        return stuDepartmentMapper.deleteStuDepartmentById(id);
+    }
+
+    /**
+     * 根据学院id查询科系列表
+     *
+     * @param collegeId
+     * @return
+     */
+    @Override
+    public List<Map<String,Object>> queryList(Long collegeId) {
+        return stuDepartmentMapper.queryList(collegeId);
+    }
+}

+ 109 - 0
ruoyi-system/src/main/java/com/ruoyi/system/service/impl/StuProfessionServiceImpl.java

@@ -0,0 +1,109 @@
+package com.ruoyi.system.service.impl;
+
+import java.util.List;
+import java.util.Map;
+
+import com.ruoyi.common.utils.DateUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import com.ruoyi.system.mapper.StuProfessionMapper;
+import com.ruoyi.system.domain.StuProfession;
+import com.ruoyi.system.service.IStuProfessionService;
+
+/**
+ * 专业Service业务层处理
+ *
+ * @author liql
+ * @date 2021-03-23
+ */
+@Service
+public class StuProfessionServiceImpl implements IStuProfessionService
+{
+    @Autowired
+    private StuProfessionMapper stuProfessionMapper;
+
+    /**
+     * 查询专业
+     *
+     * @param id 专业ID
+     * @return 专业
+     */
+    @Override
+    public StuProfession selectStuProfessionById(Long id)
+    {
+        return stuProfessionMapper.selectStuProfessionById(id);
+    }
+
+    /**
+     * 查询专业列表
+     *
+     * @param stuProfession 专业
+     * @return 专业
+     */
+    @Override
+    public List<StuProfession> selectStuProfessionList(StuProfession stuProfession)
+    {
+        return stuProfessionMapper.selectStuProfessionList(stuProfession);
+    }
+
+    /**
+     * 新增专业
+     *
+     * @param stuProfession 专业
+     * @return 结果
+     */
+    @Override
+    public int insertStuProfession(StuProfession stuProfession)
+    {
+        stuProfession.setCreateTime(DateUtils.getNowDate());
+        return stuProfessionMapper.insertStuProfession(stuProfession);
+    }
+
+    /**
+     * 修改专业
+     *
+     * @param stuProfession 专业
+     * @return 结果
+     */
+    @Override
+    public int updateStuProfession(StuProfession stuProfession)
+    {
+        stuProfession.setUpdateTime(DateUtils.getNowDate());
+        return stuProfessionMapper.updateStuProfession(stuProfession);
+    }
+
+    /**
+     * 批量删除专业
+     *
+     * @param ids 需要删除的专业ID
+     * @return 结果
+     */
+    @Override
+    public int deleteStuProfessionByIds(Long[] ids)
+    {
+        return stuProfessionMapper.deleteStuProfessionByIds(ids);
+    }
+
+    /**
+     * 删除专业信息
+     *
+     * @param id 专业ID
+     * @return 结果
+     */
+    @Override
+    public int deleteStuProfessionById(Long id)
+    {
+        return stuProfessionMapper.deleteStuProfessionById(id);
+    }
+
+    /**
+     * 根据科系id查询班级列表
+     *
+     * @param departmentId
+     * @return
+     */
+    @Override
+    public List<Map<String,Object>> queryList(Long departmentId) {
+        return stuProfessionMapper.queryList(departmentId);
+    }
+}

+ 27 - 0
ruoyi-system/src/main/java/com/ruoyi/system/task/StudentStatusTask.java

@@ -0,0 +1,27 @@
+package com.ruoyi.system.task;
+
+import com.ruoyi.system.domain.vo.StudentGraduationStatusVo;
+import com.ruoyi.system.mapper.StuBaseInfoMapper;
+import org.springframework.stereotype.Component;
+
+import javax.annotation.Resource;
+import java.util.List;
+
+/**
+ * 定时任务动态修改学生状态
+ * @Author liql
+ * @Date 2021-03-25
+ */
+@Component("studentStatusTask")
+public class StudentStatusTask {
+    @Resource
+    private StuBaseInfoMapper stuBaseInfoMapper;
+    public void updateStudentStatus(){
+        List<StudentGraduationStatusVo> list =  stuBaseInfoMapper.selectGraduationStudent();
+        for (StudentGraduationStatusVo vo:list) {
+            vo.setStudentStatus(9L);
+            stuBaseInfoMapper.updateStudentStatus(vo);
+        }
+    }
+
+}

Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 412 - 0
ruoyi-system/src/main/resources/mapper/department/StuBaseInfoMapper.xml


+ 123 - 0
ruoyi-system/src/main/resources/mapper/department/StuClassMapper.xml

@@ -0,0 +1,123 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper
+PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ruoyi.system.mapper.StuClassMapper">
+
+    <resultMap type="StuClass" id="StuClassResult">
+        <result property="id"    column="id"    />
+        <result property="professionId"    column="profession_id"    />
+        <result property="professionName"    column="profession_name"    />
+
+        <result property="departmentId"    column="department_id"    />
+        <result property="departmentName"    column="department_name"    />
+
+        <result property="collegeId"    column="college_id"    />
+        <result property="collegeName"    column="college_name"    />
+
+        <result property="className"    column="class_name"    />
+        <result property="classTeacher"    column="class_teacher"    />
+        <result property="grade"    column="grade"    />
+        <result property="graduationStatus"    column="graduation_status"    />
+        <result property="remark"    column="remark"    />
+        <result property="createBy"    column="create_by"    />
+        <result property="createTime"    column="create_time"    />
+        <result property="updateBy"    column="update_by"    />
+        <result property="updateTime"    column="update_time"    />
+    </resultMap>
+
+    <sql id="selectStuClassVo">
+        select cl.id, cl.profession_id,p.profession_name,p.department_id,d.department_name,d.college_id,co.college_name, cl.class_name, cl.class_teacher, cl.grade, cl.graduation_status, cl.remark, cl.create_by, cl.create_time, cl.update_by, cl.update_time from stu_class cl
+    </sql>
+
+    <select id="selectStuClassList" parameterType="StuClass" resultMap="StuClassResult">
+        <include refid="selectStuClassVo"/>
+        LEFT JOIN stu_profession p ON cl.profession_id = p.id
+        LEFT JOIN stu_department d ON p.department_id = d.id
+        LEFT JOIN stu_college co ON d.college_id = co.id
+        <where>
+            <if test="professionId != null "> and profession_id = #{professionId}</if>
+            <if test="className != null  and className != ''"> and class_name like concat('%', #{className}, '%')</if>
+            <if test="classTeacher != null  and classTeacher != ''"> and class_teacher like concat('%',#{classTeacher}, '%')</if>
+            <if test="grade != null "> and grade = #{grade}</if>
+            <if test="graduationStatus != null "> and graduation_status = #{graduationStatus}</if>
+            <if test="delStatus != null "> and cl.del_status = #{delStatus}</if>
+        </where>
+        order by update_time desc
+    </select>
+
+    <select id="selectStuClassById" parameterType="Long" resultMap="StuClassResult">
+        <include refid="selectStuClassVo"/>
+        LEFT JOIN stu_profession p ON cl.profession_id = p.id
+        LEFT JOIN stu_department d ON p.department_id = d.id
+        LEFT JOIN stu_college co ON d.college_id = co.id
+        where cl.id = #{id}
+    </select>
+
+    <insert id="insertStuClass" parameterType="StuClass">
+        insert into stu_class
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="id != null">id,</if>
+            <if test="professionId != null">profession_id,</if>
+            <if test="className != null">class_name,</if>
+            <if test="classTeacher != null">class_teacher,</if>
+            <if test="grade != null">grade,</if>
+            <if test="graduationStatus != null">graduation_status,</if>
+            <if test="remark != null">remark,</if>
+            <if test="delStatus != null">del_status,</if>
+            <if test="createBy != null">create_by,</if>
+            <if test="createTime != null">create_time,</if>
+            <if test="updateBy != null">update_by,</if>
+            <if test="updateTime != null">update_time,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="id != null">#{id},</if>
+            <if test="professionId != null">#{professionId},</if>
+            <if test="className != null">#{className},</if>
+            <if test="classTeacher != null">#{classTeacher},</if>
+            <if test="grade != null">#{grade},</if>
+            <if test="graduationStatus != null">#{graduationStatus},</if>
+            <if test="remark != null">#{remark},</if>
+            <if test="delStatus != null">#{delStatus},</if>
+            <if test="createBy != null">#{createBy},</if>
+            <if test="createTime != null">#{createTime},</if>
+            <if test="updateBy != null">#{updateBy},</if>
+            <if test="updateTime != null">#{updateTime},</if>
+         </trim>
+    </insert>
+
+    <update id="updateStuClass" parameterType="StuClass">
+        update stu_class
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="professionId != null">profession_id = #{professionId},</if>
+            <if test="className != null">class_name = #{className},</if>
+            <if test="classTeacher != null">class_teacher = #{classTeacher},</if>
+            <if test="grade != null">grade = #{grade},</if>
+            <if test="graduationStatus != null">graduation_status = #{graduationStatus},</if>
+            <if test="remark != null">remark = #{remark},</if>
+            <if test="delStatus != null">del_status = #{delStatus},</if>
+            <if test="createBy != null">create_by = #{createBy},</if>
+            <if test="createTime != null">create_time = #{createTime},</if>
+            <if test="updateBy != null">update_by = #{updateBy},</if>
+            <if test="updateTime != null">update_time = #{updateTime},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <delete id="deleteStuClassById" parameterType="Long">
+        delete from stu_class where id = #{id}
+    </delete>
+
+    <delete id="deleteStuClassByIds" parameterType="String">
+        delete from stu_class where id in
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </delete>
+
+    <!-- 根据专业id查询班级列表 -->
+    <select id="queryList" parameterType="Long" resultType="Map">
+       SELECT id,class_name AS className FROM stu_class WHERE del_status=0 AND profession_id=#{professionId}
+    </select>
+
+</mapper>

+ 78 - 0
ruoyi-system/src/main/resources/mapper/department/StuCollegeMapper.xml

@@ -0,0 +1,78 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper
+PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ruoyi.system.mapper.StuCollegeMapper">
+
+    <resultMap type="StuCollege" id="StuCollegeResult">
+        <result property="id"    column="id"    />
+        <result property="collegeName"    column="college_name"    />
+        <result property="remark"    column="remark"    />
+        <result property="createBy"    column="create_by"    />
+        <result property="createTime"    column="create_time"    />
+        <result property="updateBy"    column="update_by"    />
+        <result property="updateTime"    column="update_time"    />
+    </resultMap>
+
+    <sql id="selectStuCollegeVo">
+        select id, college_name, remark, create_by, create_time, update_by, update_time from stu_college
+    </sql>
+
+    <select id="selectStuCollegeList" parameterType="StuCollege" resultMap="StuCollegeResult">
+        <include refid="selectStuCollegeVo"/>
+        <where>
+            <if test="collegeName != null  and collegeName != ''"> and college_name like concat('%', #{collegeName}, '%')</if>
+        </where>
+        order by update_time desc
+    </select>
+
+    <select id="selectStuCollegeById" parameterType="Long" resultMap="StuCollegeResult">
+        <include refid="selectStuCollegeVo"/>
+        where id = #{id}
+    </select>
+
+    <insert id="insertStuCollege" parameterType="StuCollege" useGeneratedKeys="true" keyProperty="id">
+        insert into stu_college
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="collegeName != null">college_name,</if>
+            <if test="remark != null">remark,</if>
+            <if test="createBy != null">create_by,</if>
+            <if test="createTime != null">create_time,</if>
+            <if test="updateBy != null">update_by,</if>
+            <if test="updateTime != null">update_time,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="collegeName != null">#{collegeName},</if>
+            <if test="remark != null">#{remark},</if>
+            <if test="createBy != null">#{createBy},</if>
+            <if test="createTime != null">#{createTime},</if>
+            <if test="updateBy != null">#{updateBy},</if>
+            <if test="updateTime != null">#{updateTime},</if>
+         </trim>
+    </insert>
+
+    <update id="updateStuCollege" parameterType="StuCollege">
+        update stu_college
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="collegeName != null">college_name = #{collegeName},</if>
+            <if test="remark != null">remark = #{remark},</if>
+            <if test="createBy != null">create_by = #{createBy},</if>
+            <if test="createTime != null">create_time = #{createTime},</if>
+            <if test="updateBy != null">update_by = #{updateBy},</if>
+            <if test="updateTime != null">update_time = #{updateTime},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <delete id="deleteStuCollegeById" parameterType="Long">
+        delete from stu_college where id = #{id}
+    </delete>
+
+    <delete id="deleteStuCollegeByIds" parameterType="String">
+        delete from stu_college where id in
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </delete>
+
+</mapper>

+ 95 - 0
ruoyi-system/src/main/resources/mapper/department/StuDepartmentMapper.xml

@@ -0,0 +1,95 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper
+PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ruoyi.system.mapper.StuDepartmentMapper">
+
+    <resultMap type="StuDepartment" id="StuDepartmentResult">
+        <result property="id"    column="id"    />
+        <result property="collegeId"    column="college_id"    />
+        <result property="collegeName"    column="college_name"    />
+        <result property="departmentName"    column="department_name"    />
+        <result property="remark"    column="remark"    />
+        <result property="createBy"    column="create_by"    />
+        <result property="createTime"    column="create_time"    />
+        <result property="updateBy"    column="update_by"    />
+        <result property="updateTime"    column="update_time"    />
+    </resultMap>
+
+    <sql id="selectStuDepartmentVo">
+        select d.id, d.college_id,co.college_name, d.department_name, d.remark, d.create_by, d.create_time, d.update_by, d.update_time from stu_department d
+    </sql>
+
+    <select id="selectStuDepartmentList" parameterType="StuDepartment" resultMap="StuDepartmentResult">
+        <include refid="selectStuDepartmentVo"/>
+        LEFT JOIN stu_college co ON d.college_id = co.id
+        <where>
+            <if test="collegeId != null "> and college_id = #{collegeId}</if>
+            <if test="departmentName != null  and departmentName != ''"> and department_name like concat('%', #{departmentName}, '%')</if>
+            <if test="delStatus != null "> and d.del_status = #{delStatus}</if>
+        </where>
+        order by update_time desc
+    </select>
+
+    <select id="selectStuDepartmentById" parameterType="Long" resultMap="StuDepartmentResult">
+        <include refid="selectStuDepartmentVo"/>
+        LEFT JOIN stu_college co ON d.college_id = co.id
+        where d.id = #{id}
+    </select>
+
+    <insert id="insertStuDepartment" parameterType="StuDepartment" useGeneratedKeys="true" keyProperty="id">
+        insert into stu_department
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="collegeId != null">college_id,</if>
+            <if test="departmentName != null">department_name,</if>
+            <if test="delStatus != null">del_status,</if>
+            <if test="remark != null">remark,</if>
+            <if test="createBy != null">create_by,</if>
+            <if test="createTime != null">create_time,</if>
+            <if test="updateBy != null">update_by,</if>
+            <if test="updateTime != null">update_time,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="collegeId != null">#{collegeId},</if>
+            <if test="departmentName != null">#{departmentName},</if>
+            <if test="delStatus != null">#{delStatus},</if>
+            <if test="remark != null">#{remark},</if>
+            <if test="createBy != null">#{createBy},</if>
+            <if test="createTime != null">#{createTime},</if>
+            <if test="updateBy != null">#{updateBy},</if>
+            <if test="updateTime != null">#{updateTime},</if>
+         </trim>
+    </insert>
+
+    <update id="updateStuDepartment" parameterType="StuDepartment">
+        update stu_department
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="collegeId != null">college_id = #{collegeId},</if>
+            <if test="departmentName != null">department_name = #{departmentName},</if>
+            <if test="delStatus != null">del_status = #{delStatus},</if>
+            <if test="remark != null">remark = #{remark},</if>
+            <if test="createBy != null">create_by = #{createBy},</if>
+            <if test="createTime != null">create_time = #{createTime},</if>
+            <if test="updateBy != null">update_by = #{updateBy},</if>
+            <if test="updateTime != null">update_time = #{updateTime},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <delete id="deleteStuDepartmentById" parameterType="Long">
+        delete from stu_department where id = #{id}
+    </delete>
+
+    <delete id="deleteStuDepartmentByIds" parameterType="String">
+        delete from stu_department where id in
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </delete>
+
+    <!-- 查询科系列表 -->
+    <select id="queryList" parameterType="Long" resultType="Map">
+        SELECT id,department_name AS departmentName  FROM stu_department where del_status=0 AND college_id=#{collegeId}
+    </select>
+
+</mapper>

+ 107 - 0
ruoyi-system/src/main/resources/mapper/department/StuProfessionMapper.xml

@@ -0,0 +1,107 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper
+PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ruoyi.system.mapper.StuProfessionMapper">
+
+    <resultMap type="StuProfession" id="StuProfessionResult">
+        <result property="id"    column="id"    />
+        <result property="departmentId"    column="department_id"    />
+        <result property="departmentName"    column="department_name" />
+        <result property="professionName"    column="profession_name" />
+
+        <result property="collegeId"    column="college_id"    />
+        <result property="collegeName"    column="college_name"    />
+
+        <result property="remark"    column="remark"    />
+        <result property="createBy"    column="create_by"    />
+        <result property="createTime"    column="create_time"    />
+        <result property="updateBy"    column="update_by"    />
+        <result property="updateTime"    column="update_time"    />
+    </resultMap>
+
+    <sql id="selectStuProfessionVo">
+        select p.id, p.department_id,d.department_name, p.profession_name,d.college_id,co.college_name,p.remark, p.create_by, p.create_time, p.update_by, p.update_time from stu_profession p
+    </sql>
+
+    <select id="selectStuProfessionList" parameterType="StuProfession" resultMap="StuProfessionResult">
+        <include refid="selectStuProfessionVo"/>
+        LEFT JOIN stu_department d ON p.department_id = d.id
+        LEFT JOIN stu_college co ON d.college_id = co.id
+        <where>
+            <if test="departmentId != null "> and department_id = #{departmentId}</if>
+            <if test="professionName != null  and professionName != ''"> and profession_name like concat('%', #{professionName}, '%')</if>
+            <if test="delStatus != null "> and p.del_status = #{delStatus}</if>
+        </where>
+        order by update_time desc
+    </select>
+
+    <select id="selectStuProfessionById" parameterType="Long" resultMap="StuProfessionResult">
+        <include refid="selectStuProfessionVo"/>
+        LEFT JOIN stu_department d ON p.department_id = d.id
+        LEFT JOIN stu_college co ON d.college_id = co.id
+        where p.id = #{id}
+    </select>
+
+    <insert id="insertStuProfession" parameterType="StuProfession">
+        insert into stu_profession
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="id != null">id,</if>
+            <if test="departmentId != null">department_id,</if>
+            <if test="professionName != null">profession_name,</if>
+            <if test="remark != null">remark,</if>
+            <if test="delStatus != null">del_status,</if>
+            <if test="createBy != null">create_by,</if>
+            <if test="createTime != null">create_time,</if>
+            <if test="updateBy != null">update_by,</if>
+            <if test="updateTime != null">update_time,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="id != null">#{id},</if>
+            <if test="departmentId != null">#{departmentId},</if>
+            <if test="professionName != null">#{professionName},</if>
+            <if test="remark != null">#{remark},</if>
+            <if test="delStatus != null">#{delStatus},</if>
+            <if test="createBy != null">#{createBy},</if>
+            <if test="createTime != null">#{createTime},</if>
+            <if test="updateBy != null">#{updateBy},</if>
+            <if test="updateTime != null">#{updateTime},</if>
+         </trim>
+    </insert>
+
+    <update id="updateStuProfession" parameterType="StuProfession">
+        update stu_profession
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="departmentId != null">department_id = #{departmentId},</if>
+            <if test="professionName != null">profession_name = #{professionName},</if>
+            <if test="remark != null">remark = #{remark},</if>
+            <if test="delStatus != null">del_status = #{delStatus},</if>
+            <if test="createBy != null">create_by = #{createBy},</if>
+            <if test="createTime != null">create_time = #{createTime},</if>
+            <if test="updateBy != null">update_by = #{updateBy},</if>
+            <if test="updateTime != null">update_time = #{updateTime},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <delete id="deleteStuProfessionById" parameterType="Long">
+        delete from stu_profession where id = #{id}
+    </delete>
+
+    <delete id="deleteStuProfessionByIds" parameterType="String">
+        delete from stu_profession where id in
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </delete>
+
+    <!-- 查询科系列表 -->
+    <select id="queryList" parameterType="Long" resultType="Map">
+       SELECT id,profession_name AS professionName FROM stu_profession WHERE del_status=0 AND department_id=#{departmentId}
+    </select>
+    
+    <select id="selectProfessionByProfessionName" parameterType="String" resultType="StuProfession">
+        SELECT id,profession_name AS professionName FROM stu_profession WHERE profession_name=#{professionName}
+    </select>
+
+</mapper>