Commit e5be89785c216c90028f5fe85bf7d765f4b2c716
Merge branch '20221130' into 'master'
fix(DEFECT-923): 客户查不到分配给自己的产品问题修复 See merge request huang/thingsboard3.3.2!144
Showing
1 changed file
with
1 additions
and
1 deletions
@@ -186,7 +186,7 @@ public class TkDeviceProfileServiceImpl | @@ -186,7 +186,7 @@ public class TkDeviceProfileServiceImpl | ||
186 | Optional.of(deviceDTOS) | 186 | Optional.of(deviceDTOS) |
187 | .map( | 187 | .map( |
188 | devices -> | 188 | devices -> |
189 | - devices.stream().map(DeviceDTO::getDeviceProfileId).collect(Collectors.toList())) | 189 | + devices.stream().map(DeviceDTO::getProfileId).collect(Collectors.toList())) |
190 | .orElse(null); | 190 | .orElse(null); |
191 | } | 191 | } |
192 | IPage<TkDeviceProfileEntity> currentPage = | 192 | IPage<TkDeviceProfileEntity> currentPage = |