Newer
Older
sample-kotlin-spring+mybatis / src / main / kotlin / com / example / sample / mapper / SampleMapper.kt
yhornisse on 12 Mar 2020 447 bytes Add Sample.
package com.example.sample.mapper;

import com.example.sample.entity.BookEntity
import org.apache.ibatis.annotations.Mapper
import org.apache.ibatis.annotations.ResultMap
import org.apache.ibatis.annotations.Select
import org.springframework.stereotype.Repository

@Repository
@Mapper
interface SampleMapper {
    @Select("SELECT * FROM book where id = #{id}")
    @ResultMap("mapper.com.example.sample.Book")
    fun findBy(id:Int): BookEntity
}