From fa56440d350614868069eaa4029ce1827ea5a87e Mon Sep 17 00:00:00 2001 From: dxfeng Date: Mon, 29 Dec 2025 17:37:51 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0ysdfp=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../recruit/service/impl/ApplicantResumeServiceImpl.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/com/engine/recruit/service/impl/ApplicantResumeServiceImpl.java b/src/com/engine/recruit/service/impl/ApplicantResumeServiceImpl.java index 1b32397..05d563d 100644 --- a/src/com/engine/recruit/service/impl/ApplicantResumeServiceImpl.java +++ b/src/com/engine/recruit/service/impl/ApplicantResumeServiceImpl.java @@ -238,6 +238,7 @@ public class ApplicantResumeServiceImpl extends Service implements ApplicantResu String zplc = Util.null2String(params.get("zplc")); String zpjd = Util.null2String(params.get("zpjd")); String dqypjd = Util.null2String(params.get("dqypjd")); + String ysdfp = Util.null2String(params.get("ysdfp")); if (StringUtils.isBlank(ypzw)) { throw new CustomizeRunTimeException("应聘职位不可为空"); } @@ -250,7 +251,7 @@ public class ApplicantResumeServiceImpl extends Service implements ApplicantResu if (StringUtils.isBlank(dqypjd)) { throw new CustomizeRunTimeException("当前应聘阶段获取失败"); } - rs.executeUpdate("update uf_jcl_yppc set ypzw = ? , zplc = ? , zpjd = ? , dqypjd = ?, zt = 1 where id in(" + ids + ")", ypzw, zplc, zpjd, dqypjd); + rs.executeUpdate("update uf_jcl_yppc set ysdfp = ?,ypzw = ? , zplc = ? , zpjd = ? , dqypjd = ?, zt = 1 where id in(" + ids + ")", ysdfp, ypzw, zplc, zpjd, dqypjd); for (String s : ids.split(",")) { StepMsgCommonInfo.sendMsg(s, Util.null2String(ypzw), Util.null2String(zplc), Util.null2String(zpjd), user); } @@ -619,12 +620,12 @@ public class ApplicantResumeServiceImpl extends Service implements ApplicantResu // 查询面试评价 rs.executeQuery("select msg,jg from uf_jcl_mspjfk where msid = ?", msId); - while(rs.next()){ + while (rs.next()) { interviewProcess.addInterviewDetail(rs.getString("msg"), rs.getString("jg")); } List interviewDetails = interviewProcess.getInterviewDetails(); - if(CollectionUtils.isEmpty(interviewDetails)){ - if(StringUtils.isNotBlank(msg)){ + if (CollectionUtils.isEmpty(interviewDetails)) { + if (StringUtils.isNotBlank(msg)) { String[] split = msg.split(","); for (String s : split) { interviewProcess.addInterviewDetail(s, jg);