阶段转移操作调整

This commit is contained in:
dxfeng 2023-10-17 18:43:31 +08:00
parent efe7b8f511
commit aed4fa1dbc
1 changed files with 3 additions and 1 deletions

View File

@ -152,9 +152,11 @@ public class ApplicantResumeServiceImpl extends Service implements ApplicantResu
rs.executeUpdate("update uf_jcl_yppc set zt = ? where id in (" + ids + ")", ApplicationStatusEnum.OBSOLETE.getValue());
}
if (ApplicantOperateEnum.TRANSFER.getOperateType().equals(operateType)) {
// TODO
String dqypjd = Util.null2String(params.get("dqypjd"));
String billid = Util.null2String(params.get("billid"));
rs.executeUpdate("update uf_jcl_yppc set dqypjd = ? where id = ?", dqypjd, billid);
// rs.executeUpdate("update uf_jcl_yppc set dqypjd = ? where id = ?", dqypjd, billid);
rs.executeUpdate("update uf_jcl_yppc set zpjd = ? where id = ?", dqypjd, billid);
}
return returnMap;
}