fix:五院 学历字段变更下拉框

This commit is contained in:
liangcheng 2025-08-01 13:20:00 +08:00
parent 9529506f31
commit 7092bde9fa
1 changed files with 2 additions and 2 deletions

View File

@ -265,11 +265,11 @@ public class PersonnelResumeServiceImpl extends Service implements PersonnelResu
List<EducationInfo> educationInfos = new ArrayList<>();
RecordSet rs = new RecordSet();
EducationLevelComInfo educ = new EducationLevelComInfo();
rs.executeQuery("select id,xl,xw,byyx,xxzy,sfzgxw,sfzgxl,xxxs from uf_jxjl where xm = ?",resourceId);
rs.executeQuery("select id,xl1,xw,byyx,xxzy,sfzgxw,sfzgxl,xxxs from uf_jxjl where xm = ?",resourceId);
while (rs.next()) {
educationInfos.add(EducationInfo.builder()
.id(Util.getIntValue(rs.getString("id")))
.xl(educ.getEducationLevelname(Util.null2String(rs.getString("xl"))))
.xl(educ.getEducationLevelname(Util.null2String(rs.getString("xl1"))))
.xw(selectWorkflowItem("xw","uf_jxjl",Util.getIntValue(rs.getString("xw")),String.valueOf(user.getLanguage())))
.byyx(Util.null2String(rs.getString("byyx")))
.xxzy(Util.null2String(rs.getString("xxzy")))