Commit 670015e4 by 翁国栋

8小时后台--

解决了 Bug 在候选人详情页进行刷新页面操作,系统会提示用户简历信息获取失败 1491
解决了 Bug 添加员工,员工状态修改异常 1533
解决了 Bug 面试登记表中,籍贯,名族,学历中内容显示错误 1490
解决了 Bug 员工详情页新增合同信息,合同类型无展示 1488
parent 75cc85d8
...@@ -400,4 +400,8 @@ public class ZpglRcxx extends Model<ZpglRcxx> { ...@@ -400,4 +400,8 @@ public class ZpglRcxx extends Model<ZpglRcxx> {
@ApiModelProperty(value = "淘汰原因") @ApiModelProperty(value = "淘汰原因")
private String failCause; private String failCause;
/*民族*/
@Transient
@TableField(exist = false)
private String nationName;
} }
package cn.timer.api.controller.zpgl; package cn.timer.api.controller.zpgl;
import cn.hutool.core.util.StrUtil; import cn.hutool.core.util.StrUtil;
import cn.timer.api.bean.clazz.NationClass;
import cn.timer.api.bean.kqgl.UserEquiRelation; import cn.timer.api.bean.kqgl.UserEquiRelation;
import cn.timer.api.bean.kqmk.*; import cn.timer.api.bean.kqmk.*;
import cn.timer.api.bean.qyzx.QyzxEmpEntAsso; import cn.timer.api.bean.qyzx.QyzxEmpEntAsso;
...@@ -501,6 +502,7 @@ public class ZpglController { ...@@ -501,6 +502,7 @@ public class ZpglController {
@ApiParam("人才信息ID") @RequestParam(required = false) Integer zpglRcxxId) { @ApiParam("人才信息ID") @RequestParam(required = false) Integer zpglRcxxId) {
try { try {
ZpglRcxx zpglRcxx = ZpglRcxx.builder().id(zpglRcxxId).build().selectById(); ZpglRcxx zpglRcxx = ZpglRcxx.builder().id(zpglRcxxId).build().selectById();
zpglRcxx.setNationName(NationClass.builder().id(zpglRcxx.getNationClassId()).build().selectById().getName());
// 工作经验 // 工作经验
List<ZpglRcxxExperience> zpglRcxxExperiences = ZpglRcxxExperience.builder().build().selectList( List<ZpglRcxxExperience> zpglRcxxExperiences = ZpglRcxxExperience.builder().build().selectList(
new QueryWrapper<ZpglRcxxExperience>().lambda().eq(ZpglRcxxExperience::getZpglRcxxId, zpglRcxxId) new QueryWrapper<ZpglRcxxExperience>().lambda().eq(ZpglRcxxExperience::getZpglRcxxId, zpglRcxxId)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment