spring-boot-realworld-examp.../src/main/java/io/spring/infrastructure/comment/CommentMapper.java

15 lines
374 B
Java
Raw Normal View History

2017-08-15 15:36:07 +07:00
package io.spring.infrastructure.comment;
import io.spring.core.comment.Comment;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Component;
@Component
@Mapper
public interface CommentMapper {
void insert(@Param("comment") Comment comment);
Comment findById(@Param("id") String id);
}