Created
September 28, 2016 19:15
-
-
Save MirkoRossini/19a7b0a78eda9a9e4c18423ddaa2d10d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.mirkorossini.transactionaltest.mappers; | |
import org.apache.ibatis.annotations.Insert; | |
import org.apache.ibatis.annotations.Param; | |
public interface DummyMapper { | |
@Insert("insert into dummytable values (#{value})") | |
void insertRecord(@Param("value") int value); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment