feat:[REQ-3282] 暂时提交测试接口,后期删除
This commit is contained in:
parent
76cbcb0ef3
commit
9e863a1b47
@ -3,6 +3,8 @@ package cn.axzo.orgmanax.server.node.controller;
|
||||
import cn.axzo.foundation.result.ApiResult;
|
||||
import cn.axzo.orgmanax.infra.client.elise.EliseDeviceClient;
|
||||
import cn.axzo.orgmanax.infra.client.gaia.GaiaOrderServiceClient;
|
||||
import cn.axzo.orgmanax.infra.client.gaia.dto.GaiaBatchQueryWorkerIsAllConfirmedReq;
|
||||
import cn.axzo.orgmanax.infra.client.gaia.dto.GaiaBatchQueryWorkerIsAllConfirmedResp;
|
||||
import cn.axzo.orgmanax.infra.client.gaia.dto.GaiaListWorkerUnFinishWorkpointResp;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
@ -10,6 +12,7 @@ import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
@ -29,7 +32,10 @@ public class TestController {
|
||||
*/
|
||||
@GetMapping
|
||||
public ApiResult<Void> process() {
|
||||
List<GaiaListWorkerUnFinishWorkpointResp> gaiaListWorkerUnFinishWorkpointResps = gaiaOrderServiceClient.listWorkerUnFinishWorkpoint(195L, 10680L);
|
||||
GaiaBatchQueryWorkerIsAllConfirmedReq req = new GaiaBatchQueryWorkerIsAllConfirmedReq();
|
||||
req.setWorkspaceId(151L);
|
||||
req.setWorkerIdentityIds(Arrays.asList(20090217L));
|
||||
List<GaiaBatchQueryWorkerIsAllConfirmedResp> gaiaBatchQueryWorkerIsAllConfirmedResps = gaiaOrderServiceClient.batchQueryWorkerIsAllConfirmed(req);
|
||||
return ApiResult.success();
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user