Last active
December 2, 2020 14:44
-
-
Save Honatas/b67a3dd0f6cf0556f1c42c30aaf6acb4 to your computer and use it in GitHub Desktop.
A Base Model class that goes together with BaseDao: https://gist.github.com/Honatas/8a04b33efe2b5160dc4aa73de305db98
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
import org.springframework.jdbc.core.RowMapper; | |
public interface BaseModel<T> { | |
RowMapper<T> getRowMapper(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment