package incheon.sgp.ibm.service;

import java.util.List;

import incheon.sgp.ibm.vo.SgpIbmVO;
import incheon.sgp.kfs.vo.SelectComboVO;

/**
 * @author : HyeonBin, Kang
 * @version 1.3
 * @Class Name : SgpIbmService.java
 * @Description : 인천 책지도 조회 Service 인터페이스
 * @Modification Information 
 * 개정일자              개정자                  개정내용
 * ------------------ ----------- --------------------------
 * 2025. 10. 14       HyeonBin, Kang         최초생성
 * <p>
 * Copyright 2025. 올포랜드 INC. All rights reserved.
 * @since : 2025.10.14
 */
public interface SgpIbmService {

  /**
   * 인천 책지도 목록 조회 (다중 조건 필터링)
   */
  List<SgpIbmVO> selectAwardList(SgpIbmVO sgpIbmVO);

  /**
   * 구분 목록 조회 (필터용)
   */
  List<SelectComboVO> selectGubunList();
  
  /**
   * 시군구 목록 조회 (필터용)
   */
  List<SelectComboVO> selectSggList();

}
