|
@@ -115,4 +115,12 @@ public class FdService {
|
|
|
throw new BusinessException(fdkkResponse.getCode(),fdkkResponse.getMsg());
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ public Object sceneDetail(LaserSceneParam param) {
|
|
|
+ FdkkResponse fdkkResponse = laserClient.sceneDetail(param, getFdToken());
|
|
|
+ if(fdkkResponse.getCode() != 0){
|
|
|
+ throw new BusinessException(fdkkResponse.getCode(),fdkkResponse.getMsg());
|
|
|
+ }
|
|
|
+ return fdkkResponse.getData();
|
|
|
+ }
|
|
|
}
|