数据添加的更改
parent
1ff1cd9603
commit
a4cc218bef
|
@ -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();
|
||||||
|
|
Loading…
Reference in New Issue