recordLowCaseFullType = recordFullType.substring(0, 1).toLowerCase()
+ recordFullType.substring(1);
mapperObjName = recordLowCaseFullType + "Mapper";
FullyQualifiedJavaType type = new FullyQualifiedJavaType(
serviceInterfaceFullName);
Interface interfaze = new Interface(type);
interfaze.setVisibility(JavaVisibility.PUBLIC);
addAddMethod(interfaze, introspectedTable);
addDeleteMethod(interfaze, introspectedTable);
addUpdateMethod(interfaze, introspectedTable);
addFindPaginationMethod(interfaze, introspectedTable);
addFindByIdMethod(interfaze, introspectedTable);