|
|
@@ -152,7 +152,14 @@ public class IotScreenServiceImpl implements IIotScreenService {
|
|
|
iotDeviceBaseCtlReqVo.setDevBid(reqVo.getDevBid());
|
|
|
iotDeviceBaseCtlReqVo.setCtlType("address");
|
|
|
iotDeviceBaseCtlReqVo.setParams(reqVo);
|
|
|
- return iotDeviceCommonService.ctl(iotDeviceBaseCtlReqVo);
|
|
|
+
|
|
|
+ String address = null;
|
|
|
+ try{
|
|
|
+ address = iotDeviceCommonService.ctl(iotDeviceBaseCtlReqVo);
|
|
|
+ }catch (Exception e){
|
|
|
+ log.error("获取地址失败",e);
|
|
|
+ }
|
|
|
+ return address;
|
|
|
}
|
|
|
|
|
|
@Override
|