You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
829 B
Java
31 lines
829 B
Java
package com.inswave.template.dao;
|
|
|
|
import java.sql.SQLException;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import egovframework.rte.psl.dataaccess.mapper.Mapper;
|
|
|
|
@Mapper("organizationDao")
|
|
public interface OrganizationDao {
|
|
|
|
// 조직기본관리 조회
|
|
public List<Map> selectOrganizaion(Map param) throws SQLException;
|
|
|
|
public List<Map> selectOrganizaionBoss() throws SQLException;
|
|
|
|
public List<Map> selectOrganizaionSearchItem() throws SQLException;
|
|
|
|
public List<Map> selectOrganizaionBasicList(Map param) throws SQLException;
|
|
|
|
// 조직기본관리 C, U, D
|
|
public int insertOrganizaionBasic(Map param) throws SQLException;
|
|
|
|
public int updateOrganizaionBasic(Map param) throws SQLException;
|
|
|
|
public int deleteOrganizaionBasic(Map param) throws SQLException;
|
|
|
|
}
|