61 lines
1.5 KiB
Java
61 lines
1.5 KiB
Java
|
|
package nlib.info.service;
|
|
|
|
import java.util.HashMap;
|
|
|
|
/**
|
|
* <pre>
|
|
* @Class Name : InformService.java
|
|
*
|
|
* @Description : 정보성 컨텐츠를 조회하는 서비스
|
|
*
|
|
*
|
|
* @프로젝트명: 지방문화원 통합자료관리시스템 구축사업 (2021)
|
|
*
|
|
* </pre>
|
|
*
|
|
* @ ------------ -------- ---------------------------
|
|
* @ 수정일 수정자 수정내용
|
|
* @ ------------ -------- ---------------------------
|
|
* @ 2021. 8. 27. KNKIM 최초 생성
|
|
*
|
|
*
|
|
* @author 이씨플라자 * DIGITALSHIP KNKIM
|
|
* @since 2021. 8. 27.
|
|
* @version 1.0
|
|
*
|
|
*/
|
|
public interface InformService
|
|
{
|
|
|
|
/*
|
|
* 이용약관을 조회한다.
|
|
*/
|
|
public HashMap<String, String> selectInfoContent(String councilCd, String contentType) throws Exception;
|
|
|
|
/*
|
|
* 이용약관을 조회한다.
|
|
*/
|
|
public HashMap<String, String> selectTermsInfo(String councilCd) throws Exception;
|
|
|
|
/*
|
|
* 개인정보처리방침을 조회한다.
|
|
*/
|
|
public HashMap<String, String> selectPrivacyInfo(String councilCd) throws Exception;
|
|
|
|
/*
|
|
* 인사말을 조회한다.
|
|
*/
|
|
public HashMap<String, String> selectGreeting(String councilCd) throws Exception;
|
|
|
|
/*
|
|
* 이용안내를 조회한다.
|
|
*/
|
|
public HashMap<String, HashMap<String, String>> selectNCultureOperationInfo(String councilCd) throws Exception ;
|
|
|
|
/*
|
|
* 찾아오는길 조회한다.
|
|
*/
|
|
public HashMap<String, String> selectNCultureLocationInfo(String councilCd) throws Exception;
|
|
|
|
} |