package incheon.cmm.g2f.sample.mapper;

import incheon.cmm.g2f.poi.vo.G2FPoiVO;
import incheon.cmm.g2f.sample.vo.G2FSampleVO;
import incheon.com.config.annotation.MainDB;
import org.egovframe.rte.psl.dataaccess.mapper.Mapper;

import java.util.List;

@org.egovframe.rte.psl.dataaccess.mapper.Mapper @incheon.com.config.annotation.MainDB
public interface G2FSampleMapper {

	G2FSampleVO findById(String nfId);

    List<G2FSampleVO> findAllWithPaging(String searchKeyword, String searchType, int limit, int offset);

    int count(String searchKeyword, String searchType);

    void insert(G2FSampleVO poi);

    void update(G2FSampleVO poi);

    void delete(String nfId);

    List<G2FSampleVO> findAll();
}