提交更新返回值

master
lwj 2024-09-08 11:59:25 +08:00
parent fef283f8f2
commit f8b12e1237
1 changed files with 3 additions and 1 deletions

View File

@ -255,7 +255,9 @@ public class ProductServiceImpl implements ProductService {
for (DataValue dataValue : dataValueList) {
Object value = dataValue.getValue();
log.info("执行到3.00");
values.append(formatValue(dataValue.getType(), value)).append(", ");
String s = formatValue(dataValue.getType(), value);
log.info("拼接sql+=++++[{}",s);
values.append(s).append(", ");
log.info("执行到3.9");
}
log.info("执行到4");