|
|
@ -5,7 +5,9 @@ import com.engine.organization.entity.job.param.JobSearchParam;
|
|
|
|
import com.engine.organization.entity.job.po.JobPO;
|
|
|
|
import com.engine.organization.entity.job.po.JobPO;
|
|
|
|
import com.engine.organization.entity.job.vo.SingleJobTreeVO;
|
|
|
|
import com.engine.organization.entity.job.vo.SingleJobTreeVO;
|
|
|
|
import com.engine.organization.entity.searchtree.SearchTree;
|
|
|
|
import com.engine.organization.entity.searchtree.SearchTree;
|
|
|
|
|
|
|
|
import com.engine.organization.mapper.job.JobMapper;
|
|
|
|
import com.engine.organization.transmethod.JobTransMethod;
|
|
|
|
import com.engine.organization.transmethod.JobTransMethod;
|
|
|
|
|
|
|
|
import com.engine.organization.util.db.MapperProxyFactory;
|
|
|
|
import org.apache.commons.collections.CollectionUtils;
|
|
|
|
import org.apache.commons.collections.CollectionUtils;
|
|
|
|
import weaver.hrm.job.JobTitlesComInfo;
|
|
|
|
import weaver.hrm.job.JobTitlesComInfo;
|
|
|
|
|
|
|
|
|
|
|
@ -157,4 +159,11 @@ public class JobBO {
|
|
|
|
public static String getJobTitleNameByEcJobTitle(String ecJobTitle) {
|
|
|
|
public static String getJobTitleNameByEcJobTitle(String ecJobTitle) {
|
|
|
|
return new JobTitlesComInfo().getJobTitlesname(ecJobTitle);
|
|
|
|
return new JobTitlesComInfo().getJobTitlesname(ecJobTitle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static JobPO getEcJobTitleByJobId(Long jobId) {
|
|
|
|
|
|
|
|
if (null == jobId) {
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return MapperProxyFactory.getProxy(JobMapper.class).getJobById(jobId);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|