fix:五院 学历字段变更下拉框
This commit is contained in:
parent
9529506f31
commit
7092bde9fa
|
|
@ -265,11 +265,11 @@ public class PersonnelResumeServiceImpl extends Service implements PersonnelResu
|
||||||
List<EducationInfo> educationInfos = new ArrayList<>();
|
List<EducationInfo> educationInfos = new ArrayList<>();
|
||||||
RecordSet rs = new RecordSet();
|
RecordSet rs = new RecordSet();
|
||||||
EducationLevelComInfo educ = new EducationLevelComInfo();
|
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()) {
|
while (rs.next()) {
|
||||||
educationInfos.add(EducationInfo.builder()
|
educationInfos.add(EducationInfo.builder()
|
||||||
.id(Util.getIntValue(rs.getString("id")))
|
.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())))
|
.xw(selectWorkflowItem("xw","uf_jxjl",Util.getIntValue(rs.getString("xw")),String.valueOf(user.getLanguage())))
|
||||||
.byyx(Util.null2String(rs.getString("byyx")))
|
.byyx(Util.null2String(rs.getString("byyx")))
|
||||||
.xxzy(Util.null2String(rs.getString("xxzy")))
|
.xxzy(Util.null2String(rs.getString("xxzy")))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue