Param param = (Param) annotation;
String value = param.value();
paramIndexes.put(value, index);
}
if (BatchParam.class.equals(annotationType) && batchParamIndexMap != null) {
BatchParam param = (BatchParam) annotation;
String value = param.value();
batchParamIndexMap.put(value, index);
batchParamIndexes = (Integer[]) ArrayUtils.add(batchParamIndexes, new Integer(index));
if (paramTypes[index] == null || !paramTypes[index].isArray()) {
throw new DaoGenerateException("@BatchParam can only on an array");