package incheon.sgp.sample.mapper;


import incheon.sgp.sample.vo.SgpSampleVO;
import org.egovframe.rte.psl.dataaccess.mapper.Mapper;
import org.apache.ibatis.annotations.Param;

import java.util.List;

/**
 * @author : JungHoon, Lee
 * @version 1.0
 * @Class Name  : SgpSampleMapper.java
 * @Description :
 * @Modification Information
 * 개정일자			     개정자                  개정내용
 * ------------------ ----------- --------------------------
 * 2025. 09. 23        JungHoon, Lee         최초생성
 * <p>
 * <p>
 * Copyright 2025. 올포랜드 INC.All rights reserved.
 * @since : 2025. 09. 23
 */

@org.egovframe.rte.psl.dataaccess.mapper.Mapper @incheon.com.config.annotation.MainDB public interface SgpSampleMapper {
    List<SgpSampleVO> selectPlaceList(
            @Param("keyword") String keyword
    );

    SgpSampleVO selectPlaceById(@Param("id") Long id);

    int insertPlace(SgpSampleVO vo);

    int updatePlace(SgpSampleVO vo);

    int deletePlace(@Param("id") Long id);
}
