timeout = options.timeout() > -1 ? options.timeout() : null;
statementType = options.statementType();
resultSetType = options.resultSetType();
}
ResultMap resultMapAnnotation = method.getAnnotation(ResultMap.class);
String resultMapId;
if (resultMapAnnotation == null) {
resultMapId = generateResultMapName(method);
} else {
resultMapId = resultMapAnnotation.value();
}
assistant.addMappedStatement(
mappedStatementId,
sqlSource,