Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. package com.mirkorossini.transactionaltest.mappers;
  2.  
  3. import org.apache.ibatis.annotations.Insert;
  4. import org.apache.ibatis.annotations.Param;
  5.  
  6. public interface DummyMapper {
  7.  
  8. @Insert("insert into dummytable values (#{value})")
  9. void insertRecord(@Param("value") int value);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement