generated from dxfeng/secondev-chapanda-feishu
ADD-应聘者列表卡片接口
This commit is contained in:
parent
7bf2b93b9e
commit
f1173c2e93
|
|
@ -45,6 +45,8 @@ public class RecruitConstant {
|
|||
|
||||
public static final String MODE_APP_NAME;
|
||||
|
||||
public static final String APPLICANT_URL;
|
||||
|
||||
static BaseBean baseBean = new BaseBean();
|
||||
|
||||
static {
|
||||
|
|
@ -146,6 +148,12 @@ public class RecruitConstant {
|
|||
modeAppName = "JCL_招聘管理";
|
||||
}
|
||||
MODE_APP_NAME = modeAppName;
|
||||
|
||||
String applicantUrl = getRecruitPropValue("APPLICANT_URL");
|
||||
if (StringUtils.isBlank(applicantUrl)) {
|
||||
applicantUrl = "/spa/custom/static/index.html#/main/cs/app/d2c5417e775e4cc6b51e27aae45767c8_RecruitFlowInfo";
|
||||
}
|
||||
APPLICANT_URL = applicantUrl;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ public class ResumeCardInfo {
|
|||
private Integer id;
|
||||
private String image;
|
||||
private String lastName;
|
||||
private String applicantUrl;
|
||||
private String jobTitle;
|
||||
private String sex;
|
||||
private String age;
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ package com.engine.recruit.service.impl;
|
|||
|
||||
import com.engine.core.impl.Service;
|
||||
import com.engine.recruit.conn.*;
|
||||
import com.engine.recruit.constant.RecruitConstant;
|
||||
import com.engine.recruit.entity.card.*;
|
||||
import com.engine.recruit.entity.card.process.*;
|
||||
import com.engine.recruit.entity.record.ApplicantRecordPo;
|
||||
|
|
@ -389,6 +390,7 @@ public class ApplicantResumeServiceImpl extends Service implements ApplicantResu
|
|||
// 基本信息构建
|
||||
resumeCardInfo.setId(map.getInt("id"));
|
||||
resumeCardInfo.setLastName(map.getString("xm"));
|
||||
resumeCardInfo.setApplicantUrl(RecruitConstant.APPLICANT_URL + "?billId=" + id);
|
||||
String jlzp = map.getString("jlzp");
|
||||
if (StringUtils.isNotBlank(jlzp)) {
|
||||
try {
|
||||
|
|
|
|||
Loading…
Reference in New Issue