diff --git a/srs-admin/src/main/java/com/srs/web/controller/routine/SysDisBasicController.java b/srs-admin/src/main/java/com/srs/web/controller/routine/SysDisBasicController.java index 2be457e..a4b5370 100644 --- a/srs-admin/src/main/java/com/srs/web/controller/routine/SysDisBasicController.java +++ b/srs-admin/src/main/java/com/srs/web/controller/routine/SysDisBasicController.java @@ -81,13 +81,18 @@ public class SysDisBasicController extends BaseController { SysDisBasicDao dao = new SysDisBasicDao(); dao.setStId(item.getStId()); dao.setStName(item.getStName()); - dao.setCollege(item.getCollege()); + dao.setCollegeInfo(item.getCollegeInfo()); + dao.setGradeInfo(item.getGradeInfo()); + dao.setMajorInfo(item.getMajorInfo()); +// dao.setMajors(item.getMajors()); + dao.setClassInfo(item.getClassInfo()); +// dao.setCollege(item.getCollege()); dao.setSex(item.getSex()); dao.setNations(item.getNations()); - dao.setStClass(item.getStClass()); - dao.setMajors(item.getMajors()); - dao.setGrade(item.getGrade()); - dao.setCollege(item.getCollege()); +// dao.setStClass(item.getStClass()); +// dao.setMajors(item.getMajors()); +// dao.setGrade(item.getGrade()); +// dao.setCollege(item.getCollege()); dao.setReasons(item.getReasons()); dao.setConversion(item.getConversion()); @@ -104,8 +109,6 @@ public class SysDisBasicController extends BaseController { for (SysDisMate mate : item.getMaList()){ dao1.setOldgrade(mate.getOldgrade()); dao1.setOldmajor(mate.getOldmajor()); -// dao1.setNewgrade(mate.getNewgrade()); -// dao1.setNewmajor(mate.getNewmajor()); dao1.setProof(baseUrl.substring(0,baseUrl.length()-1) + mate.getProof()); dao1.setIdcard(baseUrl.substring(0,baseUrl.length()-1) + mate.getIdcard()); dao1.setMaterial(baseUrl.substring(0,baseUrl.length()-1) + mate.getMaterial()); diff --git a/srs-routine/src/main/java/com/srs/routine/domain/SysDisBasic.java b/srs-routine/src/main/java/com/srs/routine/domain/SysDisBasic.java index 5c58c67..99f874d 100644 --- a/srs-routine/src/main/java/com/srs/routine/domain/SysDisBasic.java +++ b/srs-routine/src/main/java/com/srs/routine/domain/SysDisBasic.java @@ -442,6 +442,38 @@ private static final long serialVersionUID=1L; @Excel(name = "教务处电子签名") private String jwcQmd; + /** + * 学院信息 + */ + @ApiModelProperty("学院信息") + @TableField("college_info") + @Excel(name = "学院信息") + private String collegeInfo; + + /** + * 年级信息 + */ + @ApiModelProperty("年级信息") + @TableField("grade_info") + @Excel(name = "年级信息") + private String gradeInfo; + + /** + * 专业信息 + */ + @ApiModelProperty("专业信息") + @TableField("major_info") + @Excel(name = "专业信息") + private String majorInfo; + + /** + * 班级信息 + */ + @ApiModelProperty("班级信息") + @TableField("class_info") + @Excel(name = "班级信息") + private String classInfo; + /** * 退伍复学-填报材料 */ diff --git a/srs-routine/src/main/java/com/srs/routine/domain/SysDisMate.java b/srs-routine/src/main/java/com/srs/routine/domain/SysDisMate.java index 02b2e76..7e53580 100644 --- a/srs-routine/src/main/java/com/srs/routine/domain/SysDisMate.java +++ b/srs-routine/src/main/java/com/srs/routine/domain/SysDisMate.java @@ -13,7 +13,7 @@ import com.srs.common.core.domain.BaseEntity; * 退伍复学材料对象 sys_dis_mate * * @author srs - * @date 2026-03-01 + * @date 2026-04-01 */ @Data @EqualsAndHashCode(callSuper = true) @@ -168,5 +168,53 @@ private static final long serialVersionUID=1L; @Excel(name = "保留字段") private String finallabel; + /** + * 学院信息 + */ + @ApiModelProperty("学院信息") + @TableField("college_info") + @Excel(name = "学院信息") + private String collegeInfo; + + /** + * 年级信息 + */ + @ApiModelProperty("年级信息") + @TableField("grade_info") + @Excel(name = "年级信息") + private String gradeInfo; + + /** + * 班级信息 + */ + @ApiModelProperty("班级信息") + @TableField("major_info") + @Excel(name = "班级信息") + private String majorInfo; + + /** + * 班级信息 + */ + @ApiModelProperty("班级信息") + @TableField("class_info") + @Excel(name = "班级信息") + private String classInfo; + + /** + * $column.columnComment + */ + @ApiModelProperty("${column.columnComment}") + @TableField("test_data") + @Excel(name = "${comment}" , readConverterExp = "$column.readConverterExp()") + private String testData; + + /** + * $column.columnComment + */ + @ApiModelProperty("${column.columnComment}") + @TableField("test_save") + @Excel(name = "${comment}" , readConverterExp = "$column.readConverterExp()") + private String testSave; + } diff --git a/srs-routine/src/main/java/com/srs/routine/domain/dto/SysDisBasicDao.java b/srs-routine/src/main/java/com/srs/routine/domain/dto/SysDisBasicDao.java index e888450..8e067bf 100644 --- a/srs-routine/src/main/java/com/srs/routine/domain/dto/SysDisBasicDao.java +++ b/srs-routine/src/main/java/com/srs/routine/domain/dto/SysDisBasicDao.java @@ -29,20 +29,6 @@ public class SysDisBasicDao{ @Excel(name = "序号",isSeq = true) private Long seq; -// /** -// * 复学流程ID -// */ -// @ApiModelProperty("复学流程ID") -// @Excel(name = "复学流程ID") -// private String fxId; -// -// /** -// * 流程申请时间 -// */ -// @ApiModelProperty("流程申请时间") -// @Excel(name = "流程申请时间") -// private String fxTime; - /** * 学号 */ @@ -57,17 +43,10 @@ public class SysDisBasicDao{ @Excel(name = "姓名") private String stName; - - @ApiModelProperty("学院") - @Excel(name = "学院") - private String college; - - /** - * 辅导员名字 - */ -// @ApiModelProperty("辅导员名字") -// @Excel(name = "辅导员名字") -// private String fdName; +// +// @ApiModelProperty("学院") +// @Excel(name = "学院") +// private String college; /** * 性别 @@ -84,60 +63,25 @@ public class SysDisBasicDao{ private String nations; // /** -// * $column.columnComment +// * 班级 // */ -// @ApiModelProperty("${column.columnComment}") -// @Excel(name = "辅导员签名" , readConverterExp = "$column.readConverterExp()") -// private String fdQm; -// +// @ApiModelProperty("班级") +// @Excel(name = "班级") +// private String stClass; + // /** -// * $column.columnComment +// * 专业 // */ -// @ApiModelProperty("${column.columnComment}") -// @Excel(name = "学务签名" , readConverterExp = "$column.readConverterExp()") -// private String xwQm; -// -// /** -// * $column.columnComment -// */ -// @ApiModelProperty("${column.columnComment}") -// @Excel(name = "二级学院签名" , readConverterExp = "$column.readConverterExp()") -// private String erQm; -// -// /** -// * $column.columnComment -// */ -// @ApiModelProperty("${column.columnComment}") -// @Excel(name = "学籍管理签名" , readConverterExp = "$column.readConverterExp()") -// private String xjQm; -// -// /** -// * $column.columnComment -// */ -// @ApiModelProperty("${column.columnComment}") -// @Excel(name = "教务签名" , readConverterExp = "$column.readConverterExp()") -// private String jwQm; +// @ApiModelProperty("专业") +// @Excel(name = "专业") +// private String majors; /** - * 班级 - */ - @ApiModelProperty("班级") - @Excel(name = "班级") - private String stClass; - - /** - * 专业 - */ - @ApiModelProperty("专业") - @Excel(name = "专业") - private String majors; - - /** - * 年级 - */ - @ApiModelProperty("年级") - @Excel(name = "年级") - private String grade; +// * 年级 +// */ +// @ApiModelProperty("年级") +// @Excel(name = "年级") +// private String grade; /** * 学院 @@ -151,181 +95,6 @@ public class SysDisBasicDao{ @Excel(name = "原因") private String reasons; -// /** -// * 辅导员意见 -// */ -// @ApiModelProperty("辅导员意见") -// @TableField("fd_idea") -// @Excel(name = "辅导员意见") -// private String fdIdea; -// -// /** -// * 二级学院意见 -// */ -// @ApiModelProperty("二级学院意见") -// @TableField("two_idea") -// @Excel(name = "二级学院意见") -// private String twoIdea; -// -// /** -// * 学务意见 -// */ -// @ApiModelProperty("学务意见") -// @TableField("xw_idea") -// @Excel(name = "学务意见") -// private String xwIdea; -// -// /** -// * 学籍管理意见 -// */ -// @ApiModelProperty("学籍管理意见") -// @TableField("xj_idea") -// @Excel(name = "学籍管理意见") -// private String xjIdea; -// -// /** -// * 教务处意见 -// */ -// @ApiModelProperty("教务处意见") -// @TableField("jw_idea") -// @Excel(name = "教务处意见") -// private String jwIdea; -// -// /** -// * 招生意见 -// */ -// @ApiModelProperty("招生意见") -// @TableField("zs_idea") -// @Excel(name = "招生意见") -// private String zsIdea; -// -// /** -// * 招生就业 -// */ -// @ApiModelProperty("招生就业") -// @TableField("zs_status") -// @Excel(name = "招生就业") -// private String zsStatus; -// -// /** -// * 时间 -// */ -// @ApiModelProperty("时间") -// @TableField("times") -// @Excel(name = "时间") -// private String times; -// -// /** -// * 辅导员审核状态 -// */ -// @ApiModelProperty("辅导员审核状态") -// @TableField("fd_status") -// @Excel(name = "辅导员审核状态") -// private String fdStatus; -// -// /** -// * -// */ -// @ApiModelProperty("") -// @TableField("xw_status") -// @Excel(name = "学务审核状态") -// private String xwStatus; -// -// /** -// * 二级学院审核状态 -// */ -// @ApiModelProperty("二级学院审核状态") -// @TableField("two_status") -// @Excel(name = "二级学院审核状态") -// private String twoStatus; -// -// /** -// * 学籍管理审核状态 -// */ -// @ApiModelProperty("学籍管理审核状态") -// @TableField("xjgl_status") -// @Excel(name = "学籍管理审核状态") -// private String xjglStatus; -// -// /** -// * 教务审核状态 -// */ -// @ApiModelProperty("教务审核状态") -// @TableField("jw_status") -// @Excel(name = "教务审核状态") -// private String jwStatus; -// -// /** -// * 退伍审核时间 -// */ -// @ApiModelProperty("退伍审核时间") -// @TableField("rw_time") -// @Excel(name = "退伍审核时间") -// private String rwTime; -// -// /** -// * 招生审核时间 -// */ -// @ApiModelProperty("招生审核时间") -// @TableField("zs_time") -// @Excel(name = "招生审核时间") -// private String zsTime; -// -// /** -// * 辅导员 -// */ -// @ApiModelProperty("辅导员") -// @TableField("fd_time") -// @Excel(name = "辅导员") -// private String fdTime; -// -// /** -// * 学务审核 -// */ -// @ApiModelProperty("学务审核") -// @TableField("xw_time") -// @Excel(name = "学务审核") -// private String xwTime; -// -// /** -// * 二时间 -// */ -// @ApiModelProperty("二时间") -// @TableField("two_time") -// @Excel(name = "二时间") -// private String twoTime; -// -// /** -// * 学籍时间 -// */ -// @ApiModelProperty("学籍时间") -// @TableField("xj_time") -// @Excel(name = "学籍时间") -// private String xjTime; -// -// /** -// * 教务审核时间 -// */ -// @ApiModelProperty("教务审核时间") -// @TableField("jw_time") -// @Excel(name = "教务审核时间") -// private String jwTime; -// -// /** -// * 空余字段 -// */ -// @ApiModelProperty("空余字段") -// @TableField("datab") -// @Excel(name = "空余字段") -// private String datab; -// -// /** -// * -// */ -// @ApiModelProperty("") -// @TableField("dataa") -// @Excel(name = "") -// private String dataa; /** * 专业转换 @@ -334,28 +103,35 @@ public class SysDisBasicDao{ @Excel(name = "专业转换") private String conversion; -// /** -// * 流程实例ID -// */ -// @ApiModelProperty("流程实例ID") -// @TableField("process_id") -// @Excel(name = "流程实例ID") -// private String processId; + @ApiModelProperty("学院信息") + @TableField("college_info") + @Excel(name = "新学院信息") + private String collegeInfo; -// /** -// * 流程部署编号 -// */ -// @ApiModelProperty("流程部署编号") -// @TableField("deploy_id") -// @Excel(name = "流程部署编号") -// private String deployId; + /** + * 年级信息 + */ + @ApiModelProperty("年级信息") + @TableField("grade_info") + @Excel(name = "新年级信息") + private String gradeInfo; + + /** + * 专业信息 + */ + @ApiModelProperty("专业信息") + @TableField("major_info") + @Excel(name = "新专业信息") + private String majorInfo; + + /** + * 班级信息 + */ + @ApiModelProperty("班级信息") + @TableField("class_info") + @Excel(name = "新班级信息") + private String classInfo; -// /** -// * 退伍复学-填报材料 -// */ -// @ApiModelProperty(value = "退伍复学-填报材料", hidden = true) -// @Excel(name = "退伍复学-填报材料") -// private List MaList; } diff --git a/srs-routine/src/main/java/com/srs/routine/domain/dto/SysDisMateDao.java b/srs-routine/src/main/java/com/srs/routine/domain/dto/SysDisMateDao.java index 5810b09..3e025ec 100644 --- a/srs-routine/src/main/java/com/srs/routine/domain/dto/SysDisMateDao.java +++ b/srs-routine/src/main/java/com/srs/routine/domain/dto/SysDisMateDao.java @@ -24,13 +24,15 @@ public class SysDisMateDao { /** * */ - @Excel(name = "序号",isSeq = true) - private Long seq; + @ApiModelProperty("") + @TableId(value = "id", type = IdType.AUTO) + private Long id; /** * 学号 */ @ApiModelProperty("学号") + @TableField("st_id") @Excel(name = "学号") private String stId; @@ -38,28 +40,23 @@ public class SysDisMateDao { * 姓名 */ @ApiModelProperty("姓名") + @TableField("st_name") @Excel(name = "姓名") private String stName; - @ApiModelProperty("学院") - @Excel(name = "学院") - private String college; - - /** - * 时间 - */ -// @ApiModelProperty("时间") -// @Excel(name = "时间") -// private String times; - /** * 学院 */ + @ApiModelProperty("原学院") + @TableField("college") + @Excel(name = "原学院") + private String college; /** * 原年级 */ @ApiModelProperty("原年级") + @TableField("oldgrade") @Excel(name = "原年级") private String oldgrade; @@ -67,13 +64,31 @@ public class SysDisMateDao { * 原专业 */ @ApiModelProperty("原专业") + @TableField("oldmajor") @Excel(name = "原专业") private String oldmajor; +// +// /** +// * 新年级 +// */ +// @ApiModelProperty("新年级") +// @TableField("newgrade") +// @Excel(name = "新年级") +// private String newgrade; +// +// /** +// * 新班级 +// */ +// @ApiModelProperty("新班级") +// @TableField("newmajor") +// @Excel(name = "新班级") +// private String newmajor; /** * 退役证明 */ @ApiModelProperty("退役证明") + @TableField("proof") @Excel(name = "退役证明") private String proof; @@ -81,6 +96,7 @@ public class SysDisMateDao { * 身份证 */ @ApiModelProperty("身份证") + @TableField("idcard") @Excel(name = "身份证") private String idcard; @@ -88,9 +104,90 @@ public class SysDisMateDao { * 材料 */ @ApiModelProperty("材料") + @TableField("material") @Excel(name = "材料") private String material; +// /** +// * 最终专业1 +// */ +// @ApiModelProperty("最终专业1") +// @TableField("finaldata1") +// @Excel(name = "最终专业1") +// private String finaldata1; +// +// /** +// * 最终专业1 +// */ +// @ApiModelProperty("最终专业1") +// @TableField("finaldata2") +// @Excel(name = "最终专业1") +// private String finaldata2; +// +// /** +// * 最终年级 +// */ +// @ApiModelProperty("最终年级") +// @TableField("finalmajor") +// @Excel(name = "最终年级") +// private String finalmajor; +// +// /** +// * 保留字段 +// */ +// @ApiModelProperty("保留字段") +// @TableField("finallabel") +// @Excel(name = "保留字段") +// private String finallabel; + +// /** +// * 学院信息 +// */ +// @ApiModelProperty("学院信息") +// @TableField("college_info") +// @Excel(name = "学院信息") +// private String collegeInfo; +// +// /** +// * 年级信息 +// */ +// @ApiModelProperty("年级信息") +// @TableField("grade_info") +// @Excel(name = "年级信息") +// private String gradeInfo; +// +// /** +// * 班级信息 +// */ +// @ApiModelProperty("班级信息") +// @TableField("major_info") +// @Excel(name = "班级信息") +// private String majorInfo; +// +// /** +// * 班级信息 +// */ +// @ApiModelProperty("班级信息") +// @TableField("class_info") +// @Excel(name = "班级信息") +// private String classInfo; + +// /** +// * $column.columnComment +// */ +// @ApiModelProperty("${column.columnComment}") +// @TableField("test_data") +// @Excel(name = "${comment}" , readConverterExp = "$column.readConverterExp()") +// private String testData; +// +// /** +// * $column.columnComment +// */ +// @ApiModelProperty("${column.columnComment}") +// @TableField("test_save") +// @Excel(name = "${comment}" , readConverterExp = "$column.readConverterExp()") +// private String testSave; + diff --git a/srs-routine/src/main/java/com/srs/routine/service/impl/SysDisBasicServiceImpl.java b/srs-routine/src/main/java/com/srs/routine/service/impl/SysDisBasicServiceImpl.java index fd8b3dc..59d9257 100644 --- a/srs-routine/src/main/java/com/srs/routine/service/impl/SysDisBasicServiceImpl.java +++ b/srs-routine/src/main/java/com/srs/routine/service/impl/SysDisBasicServiceImpl.java @@ -162,7 +162,14 @@ public class SysDisBasicServiceImpl extends ServiceImpl + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -185,9 +99,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" - - - @@ -285,6 +196,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" and rj_qmd = #{rjQmd} and xj_qmd = #{xjQmd} and jwc_qmd = #{jwcQmd} + and college_info = #{collegeInfo} + and grade_info = #{gradeInfo} + and major_info = #{majorInfo} + and class_info = #{classInfo} @@ -347,6 +262,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" rj_qmd, xj_qmd, jwc_qmd, + college_info, + grade_info, + major_info, + class_info, #{fxId}, @@ -400,6 +319,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" #{rjQmd}, #{xjQmd}, #{jwcQmd}, + #{collegeInfo}, + #{gradeInfo}, + #{majorInfo}, + #{classInfo}, @@ -457,6 +380,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" rj_qmd = #{rjQmd}, xj_qmd = #{xjQmd}, jwc_qmd = #{jwcQmd}, + college_info = #{collegeInfo}, + grade_info = #{gradeInfo}, + major_info = #{majorInfo}, + class_info = #{classInfo}, where id = #{id} diff --git a/srs-routine/src/main/resources/mapper/routine/SysDisMateMapper.xml b/srs-routine/src/main/resources/mapper/routine/SysDisMateMapper.xml index 6ce1f77..a30c492 100644 --- a/srs-routine/src/main/resources/mapper/routine/SysDisMateMapper.xml +++ b/srs-routine/src/main/resources/mapper/routine/SysDisMateMapper.xml @@ -1,9 +1,9 @@ + PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" + "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> - + @@ -23,15 +23,21 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" + + + + + + - select id, st_id, st_name, times, college, oldgrade, oldmajor, newgrade, newmajor, proof, idcard, material, data1, data2, finaldata1, finaldata2, finalmajor, finallabel from sys_dis_mate + select id, st_id, st_name, times, college, oldgrade, oldmajor, newgrade, newmajor, proof, idcard, material, data1, data2, finaldata1, finaldata2, finalmajor, finallabel, college_info, grade_info, major_info, class_info, test_data, test_save from sys_dis_mate @@ -77,7 +89,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" finaldata2, finalmajor, finallabel, - + college_info, + grade_info, + major_info, + class_info, + test_data, + test_save, + #{stId}, #{stName}, @@ -96,7 +114,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" #{finaldata2}, #{finalmajor}, #{finallabel}, - + #{collegeInfo}, + #{gradeInfo}, + #{majorInfo}, + #{classInfo}, + #{testData}, + #{testSave}, + @@ -119,6 +143,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" finaldata2 = #{finaldata2}, finalmajor = #{finalmajor}, finallabel = #{finallabel}, + college_info = #{collegeInfo}, + grade_info = #{gradeInfo}, + major_info = #{majorInfo}, + class_info = #{classInfo}, + test_data = #{testData}, + test_save = #{testSave}, where id = #{id} @@ -144,16 +174,23 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" finaldata2 = #{finaldata2}, finalmajor = #{finalmajor}, finallabel = #{finallabel}, + college_info = #{collegeInfo}, + grade_info = #{gradeInfo}, + major_info = #{majorInfo}, + class_info = #{classInfo}, + test_data = #{testData}, + test_save = #{testSave}, where st_id = #{stId} + delete from sys_dis_mate where id = #{id} - delete from sys_dis_mate where id in + delete from sys_dis_mate where id in #{id}