📄 engageresumebiz.java
字号:
package org.better.hr.biz;
import java.util.List;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.better.hr.comm.Util;
import org.better.hr.dao.EngageResumeDao;
import org.better.hr.entity.EngageResume;
import org.better.hr.exception.HrException;
public class EngageResumeBiz {
private static final Log logger = LogFactory.getLog(ConfigFileFirstKindBiz.class);
private EngageResumeDao engageresumeDao;
public EngageResumeDao getEngageresumeDao() {
return engageresumeDao;
}
public void setEngageresumeDao(EngageResumeDao engageresumeDao) {
this.engageresumeDao = engageresumeDao;
}
/**
* 根据ID号返回对象
* @param id 主键id
* @return 对象
* @throws HrException
*/
public EngageResume getERbyID(java.io.Serializable id) throws HrException
{
try
{
return this.getEngageresumeDao().load(id);
}
catch (Exception ex) {
logger.error(ex);
throw new HrException(ex);
}
}
/**
* 新增
* @param cffk 新增的对象
* @return 新产生的一级机构编号
* @throws HrException
*/
public void add(EngageResume condition) throws HrException {
try {
condition.setHumanBirthday(Util.parseDate(condition.getStr_humanBirthday()));
condition.setRegistTime(Util.parseDate(condition.getStr_registTime()));//将登记时间转换为日期类型
/**
* 得到下拉框中带有编号和名称的字符串数组,以"/"分开,然后再插入数据库中
* 为实体中的 majorkindid 和 majorkindname 赋值
*/
String args[] = Util.splitIdAndName(condition.getHumanMajorKindName());
condition.setHumanMajorKindId(args[0]);
condition.setHumanMajorKindName(args[1]);
/**
* 得到下拉框中带有编号和名称的字符串数组,以"/"分开,然后再插入数据库中
* 为实体中的 majorid 和 majorname 赋值
*/
args = Util.splitIdAndName(condition.getHumanMajorName());
condition.setHumanMajorId(args[0]);
condition.setHumanMajorName(args[1]);
condition.setCheckStatus(Short.valueOf("0")); //设置简历筛选状态为0
condition.setInterviewStatus(Short.valueOf("0"));//设置面试状态为0
condition.setPassCheckStatus(Short.valueOf("0"));//设置录用状态为0
this.getEngageresumeDao().add(condition);
} catch (Exception ex) {
logger.error(ex);
throw new HrException(ex);
}
}
/**
* 查询显示列表
* @param condition 包含查询条件的对象
* @return 查询结果列表
* @throws HrException
*/
public List list(EngageResume condition) throws HrException {
try {
return this.getEngageresumeDao().find(condition);
} catch (Exception ex) {
logger.error(ex);
throw new HrException(ex);
}
}
/**
* 更新对象到数据库
* @param condition 已更新的对象
* @throws HrException
*/
public void update(EngageResume condition) throws HrException {
try {
this.getEngageresumeDao().update(condition);
} catch (Exception ex) {
logger.error(ex);
throw new HrException(ex);
}
}
/**
* 删除数据库对象
* @param id 对象的主键编号
* @throws HrException
*/
public void delete(java.io.Serializable id) throws HrException
{
try {
this.getEngageresumeDao().delete(id);
} catch (Exception ex) {
logger.error(ex);
throw new HrException(ex);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -