feat:[REQ-3282] 删除测试类
This commit is contained in:
parent
896a32c497
commit
426f39fbd7
@ -1,43 +0,0 @@
|
||||
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;
|
||||
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;
|
||||
|
||||
/**
|
||||
* 测试
|
||||
*/
|
||||
@Slf4j
|
||||
@RequiredArgsConstructor
|
||||
@RequestMapping("test")
|
||||
@RestController
|
||||
public class TestController {
|
||||
|
||||
private final GaiaOrderServiceClient gaiaOrderServiceClient;
|
||||
|
||||
/**
|
||||
* 测试接口
|
||||
* @return
|
||||
*/
|
||||
@GetMapping
|
||||
public ApiResult<Void> process() {
|
||||
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