Przeglądaj źródła

'优化data-transfer模块中单个设备数据写入接口,新增设备信息表设备名称必填字段的赋值'

james 5 miesięcy temu
rodzic
commit
c468775fc1

+ 1 - 0
data-transfer/data-transfer-biz/src/main/java/com/usky/transfer/service/impl/QueryInfluxdbDataServiceImpl.java

@@ -136,6 +136,7 @@ public class QueryInfluxdbDataServiceImpl extends AbstractCrudService<QueryInflu
                 DmpDevice dmpDeviceInfo = new DmpDevice();
                 ProductMapVO productMapVO = productMapList.get(productCode);
                 dmpDeviceInfo.setDeviceId(deviceId);
+                dmpDeviceInfo.setDeviceName("");
                 dmpDeviceInfo.setDeviceType(productMapVO.getDeviceType());
                 dmpDeviceInfo.setProductId(productMapVO.getProductId());
                 dmpDeviceInfo.setCreatedBy(productMapVO.getCreatedBy());