数据添加的更改

master
lwj 2024-09-08 18:54:29 +08:00
parent 1ff1cd9603
commit a4cc218bef
1 changed files with 7 additions and 0 deletions

View File

@ -173,6 +173,13 @@ public class ProductServiceImpl implements ProductService {
@Override @Override
public int addProduct(Long basicId, Long tableId, DataValue[][] listList) { public int addProduct(Long basicId, Long tableId, DataValue[][] listList) {
log.info("数据源ID的basicId{}值"+basicId);
log.info("表的主键{}值"+tableId);
for (DataValue[] dataValues : listList) {
for (DataValue dataValue : dataValues) {
log.info("里面的所有的值"+dataValue);
}
}
Source dataSources = sourceService.getById(basicId); Source dataSources = sourceService.getById(basicId);
TableInfo tableInfo = tableInfoService.getById(tableId); TableInfo tableInfo = tableInfoService.getById(tableId);
String tableName = tableInfo.getTableName(); String tableName = tableInfo.getTableName();