first commit
This commit is contained in:
46
src/main/java/egovframework/cms/duty/dao/HmsDutyDAO.java
Normal file
46
src/main/java/egovframework/cms/duty/dao/HmsDutyDAO.java
Normal file
@@ -0,0 +1,46 @@
|
||||
/*
|
||||
* 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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user