This commit is contained in:
zyyang 2020-12-14 22:35:21 +08:00
parent 95a4a6603b
commit 4f301f3bfc
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ public class SubTableService extends AbstractService {
for (int k = 0; k < rowValue.getFields().size(); k++) {
FieldValue fieldValue = rowValue.getFields().get(k);
if (k == 0)
sb.append("'" + fieldValue.getValue() + "'");
sb.append("" + fieldValue.getValue() + "");
else
sb.append(", '" + fieldValue.getValue() + "'");
}