Change default JdbcMapper.beanSuffix

This commit is contained in:
Travis Burtrum 2019-07-11 00:39:52 -04:00
parent 1a37b1c4d1
commit 62bf29dc2b
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ import java.sql.Connection;
*/
public interface JdbcMapper extends Closeable {
String beanSuffix = System.getProperty("JdbcMapper.beanSuffix", "Bean");
String beanSuffix = System.getProperty("JdbcMapper.beanSuffix", "JCMBean");
Connection getConnection();