Spring Boot/코드정리
[memo] IMemoMapper.java
root_go
2022. 10. 26. 17:44
package dev.rootgo.study_web.mappers;
import dev.rootgo.study_web.entities.study.MemoEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
// 해당 인터페이스가 스프링 부트가 인식해야하는 매퍼(Mapper)임을 알린다.
public interface IMemoMapper {
int insertMemo(MemoEntity memo);
}