|
builder.append(StringUtils.join(Collections.nCopies(entries.size(), "?"), ","));
|
|
builder.append(StringUtils.join(Collections.nCopies(entries.size(), "?"), ","));
|
|
- return sqlModule.insert(new BoundSql(runtimeContext, builder.toString(), entries.stream().map(Map.Entry::getValue).collect(Collectors.toList()), sqlModule), this.primary);
|
|
+ Object value = sqlModule.insert(new BoundSql(runtimeContext, builder.toString(), entries.stream().map(Map.Entry::getValue).collect(Collectors.toList()), sqlModule), this.primary);
|