退伍复学-企业消息推送

This commit is contained in:
2026-03-19 15:48:00 +08:00
parent 1e359df1b2
commit 21e967a72e
5 changed files with 106 additions and 37 deletions

View File

@@ -70,20 +70,6 @@ public class SysDisMateDao {
@Excel(name = "原专业")
private String oldmajor;
/**
* 新年级
*/
@ApiModelProperty("新年级")
@Excel(name = "新年级")
private String newgrade;
/**
* 新专业
*/
@ApiModelProperty("新专业")
@Excel(name = "新专业")
private String newmajor;
/**
* 退役证明
*/
@@ -104,22 +90,8 @@ public class SysDisMateDao {
@ApiModelProperty("材料")
@Excel(name = "材料")
private String material;
//
// /**
// * 保留字段1
// */
// @ApiModelProperty("保留字段1")
// @TableField("data1")
// @Excel(name = "保留字段1")
// private String data1;
//
// /**
// * 保留字段2
// */
// @ApiModelProperty("保留字段2")
// @TableField("data2")
// @Excel(name = "保留字段2")
// private String data2;
}

View File

@@ -1,6 +1,8 @@
package com.srs.routine.service.impl;
import java.util.List;
import com.srs.routine.domain.dto.SysDisMateDao;
import org.springframework.beans.factory.annotation.Autowired;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
@@ -8,6 +10,8 @@ import com.srs.routine.mapper.SysDisMateMapper;
import com.srs.routine.domain.SysDisMate;
import com.srs.routine.service.ISysDisMateService;
import javax.servlet.http.HttpServletResponse;
/**
* 退伍复学材料Service业务层处理
*
@@ -84,4 +88,5 @@ public class SysDisMateServiceImpl extends ServiceImpl<SysDisMateMapper,SysDisMa
public int deleteSysDisMateById(Long id) {
return sysDisMateMapper.deleteSysDisMateById(id);
}
}

View File

@@ -51,12 +51,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="finallabel != null and finallabel != ''"> and finallabel = #{finallabel}</if>
</where>
</select>
<select id="selectSysDisMateById" parameterType="Long" resultMap="SysDisMateResult">
<include refid="selectSysDisMateVo"/>
where id = #{id}
</select>
<insert id="insertSysDisMate" parameterType="SysDisMate" useGeneratedKeys="true" keyProperty="id">
insert into sys_dis_mate
<trim prefix="(" suffix=")" suffixOverrides=",">