47 lines
1.6 KiB
Java
47 lines
1.6 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* egovframework.cms.duty.dao.HmsDutyDAO
|
|
* egovframework.cms.duty.vo.HmsDutyDefaultVO
|
|
* egovframework.cms.duty.vo.HmsDutyVO
|
|
* egovframework.com.cmm.service.impl.EgovComAbstractDAO
|
|
* org.springframework.stereotype.Repository
|
|
*/
|
|
package egovframework.cms.duty.dao;
|
|
|
|
import egovframework.cms.duty.vo.HmsDutyDefaultVO;
|
|
import egovframework.cms.duty.vo.HmsDutyVO;
|
|
import egovframework.com.cmm.service.impl.EgovComAbstractDAO;
|
|
import java.util.List;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
@Repository(value="hmsDutyDAO")
|
|
public class HmsDutyDAO
|
|
extends EgovComAbstractDAO {
|
|
public String insertHmsDuty(HmsDutyVO vo) throws Exception {
|
|
return (String)this.insert("hmsDutyDAO.insertHmsDuty_S", (Object)vo);
|
|
}
|
|
|
|
public void updateHmsDuty(HmsDutyVO vo) throws Exception {
|
|
this.update("hmsDutyDAO.updateHmsDuty_S", (Object)vo);
|
|
}
|
|
|
|
public void deleteHmsDuty(HmsDutyVO vo) throws Exception {
|
|
this.delete("hmsDutyDAO.deleteHmsDuty_S", (Object)vo);
|
|
}
|
|
|
|
public HmsDutyVO selectHmsDuty(HmsDutyVO vo) throws Exception {
|
|
return (HmsDutyVO)this.selectByPk("hmsDutyDAO.selectHmsDuty_S", (Object)vo);
|
|
}
|
|
|
|
public List selectHmsDutyList(HmsDutyDefaultVO searchVO) throws Exception {
|
|
return this.list("hmsDutyDAO.selectHmsDutyList_D", (Object)searchVO);
|
|
}
|
|
|
|
public int selectHmsDutyListTotCnt(HmsDutyDefaultVO searchVO) {
|
|
return (Integer)this.getSqlMapClientTemplate().queryForObject("hmsDutyDAO.selectHmsDutyListTotCnt_S", (Object)searchVO);
|
|
}
|
|
}
|
|
|