84 lines
3.2 KiB
Java
84 lines
3.2 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* egovframework.cms.auth.dao.HmsAuthGroupDAO
|
|
* egovframework.cms.auth.vo.HmsAuthGroupDefaultVO
|
|
* egovframework.cms.auth.vo.HmsAuthGroupVO
|
|
* egovframework.com.cmm.service.impl.EgovComAbstractDAO
|
|
* org.springframework.stereotype.Repository
|
|
*/
|
|
package egovframework.cms.auth.dao;
|
|
|
|
import egovframework.cms.auth.vo.HmsAuthGroupDefaultVO;
|
|
import egovframework.cms.auth.vo.HmsAuthGroupVO;
|
|
import egovframework.com.cmm.service.impl.EgovComAbstractDAO;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
@Repository(value="hmsAuthGroupDAO")
|
|
public class HmsAuthGroupDAO
|
|
extends EgovComAbstractDAO {
|
|
public String insertHmsAuthGroup(HmsAuthGroupVO vo) throws Exception {
|
|
return (String)this.insert("hmsAuthGroupDAO.insertHmsAuthGroup_S", (Object)vo);
|
|
}
|
|
|
|
public void updateHmsAuthGroup(HmsAuthGroupVO vo) throws Exception {
|
|
this.update("hmsAuthGroupDAO.updateHmsAuthGroup_S", (Object)vo);
|
|
}
|
|
|
|
public void deleteHmsAuthGroup(HmsAuthGroupVO vo) throws Exception {
|
|
this.delete("hmsAuthGroupDAO.deleteHmsAuthGroup_S", (Object)vo);
|
|
}
|
|
|
|
public HmsAuthGroupVO selectHmsAuthGroup(HmsAuthGroupVO vo) throws Exception {
|
|
return (HmsAuthGroupVO)this.selectByPk("hmsAuthGroupDAO.selectHmsAuthGroup_S", (Object)vo);
|
|
}
|
|
|
|
public List selectHmsAuthGroupList(HmsAuthGroupDefaultVO searchVO) throws Exception {
|
|
return this.list("hmsAuthGroupDAO.selectHmsAuthGroupList_D", (Object)searchVO);
|
|
}
|
|
|
|
public int selectHmsAuthGroupListTotCnt(HmsAuthGroupDefaultVO searchVO) {
|
|
return (Integer)this.select("hmsAuthGroupDAO.selectHmsAuthGroupListTotCnt_S", (Object)searchVO);
|
|
}
|
|
|
|
public List selectHmsAuthList() throws Exception {
|
|
return this.list("hmsAuthGroupDAO.selectHmsAuthList", null);
|
|
}
|
|
|
|
public void insertHmsAuthGroupAuth(Map<String, Object> param) throws Exception {
|
|
this.insert("hmsAuthGroupDAO.insertHmsAuthGroupAuth", param);
|
|
}
|
|
|
|
public List selectHmsAuthGroupRelAuth(String authGroupSeq) throws Exception {
|
|
return this.list("hmsAuthGroupDAO.selectHmsAuthGroupRelAuth", (Object)authGroupSeq);
|
|
}
|
|
|
|
public void deleteHmsAuthGroupRelAuth(String authGroupSeq) throws Exception {
|
|
this.delete("hmsAuthGroupDAO.deleteHmsAuthGroupRelAuth", (Object)authGroupSeq);
|
|
}
|
|
|
|
public List selectHmsAuthGroupRelUser(String authGroupSeq) throws Exception {
|
|
return this.list("hmsAuthGroupDAO.selectHmsAuthGroupRelUser", (Object)authGroupSeq);
|
|
}
|
|
|
|
public List selectHmsAuthGroupRelUserByMember(String authGroupSeq) throws Exception {
|
|
return this.list("hmsAuthGroupDAO.selectHmsAuthGroupRelUserByMember", (Object)authGroupSeq);
|
|
}
|
|
|
|
public List selectHmsAuthGroupRelDept(String authGroupSeq) throws Exception {
|
|
return this.list("hmsAuthGroupDAO.selectHmsAuthGroupRelDept", (Object)authGroupSeq);
|
|
}
|
|
|
|
public void deleteHmsAuthGroupRelUser(Map<String, Object> param) throws Exception {
|
|
this.delete("hmsAuthGroupDAO.deleteHmsAuthGroupRelUser", param);
|
|
}
|
|
|
|
public void insertHmsAuthGroupUser(Map<String, Object> param) throws Exception {
|
|
this.insert("hmsAuthGroupDAO.insertHmsAuthGroupUser", param);
|
|
}
|
|
}
|
|
|