first commit

This commit is contained in:
revlis44
2025-12-03 10:41:27 +09:00
commit a6b37aa445
2430 changed files with 175919 additions and 0 deletions

View 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);
}
}