123456789101112131415161718192021222324252627282930 |
- package com.fdkankan.agent.httpClient.client;
- import com.dtflys.forest.annotation.*;
- import com.fdkankan.agent.httpClient.SignInterceptor;
- import com.fdkankan.agent.httpClient.address.LaserAddressSource;
- import com.fdkankan.agent.httpClient.request.LaserSceneMoveParam;
- import com.fdkankan.agent.httpClient.request.LaserSceneParam;
- import com.fdkankan.agent.httpClient.response.FdkkResponse;
- import com.fdkankan.agent.httpClient.response.LaserResponse;
- import java.util.List;
- import java.util.Map;
- /**
- * 获取,调用4dkk服务
- */
- @Address(source = LaserAddressSource.class)
- public interface LaserClient {
- /**
- * 获取深时场景数据
- */
- @Post(value = "/laser/4dage/managerSceneList",interceptor = SignInterceptor.class)
- LaserResponse sceneList(@JSONBody LaserSceneParam param);
- /**
- * 相机迁移
- */
- @Post(value = "/laser/4dage/scene/migrate",interceptor = SignInterceptor.class)
- FdkkResponse migrate(@JSONBody LaserSceneMoveParam param);
- }
|