Commit 6d0b8026 by “zcwang”

merge:合并

parent c7c24c82
Pipeline #43453 passed with stages
in 1 minute 49 seconds
...@@ -72,20 +72,19 @@ public class TestController { ...@@ -72,20 +72,19 @@ public class TestController {
} }
@Autowired @Autowired
private FlowRpcSupplierSendService supplierSendService; private FlowRpcSupplierService rpcSupplierService;
@PostMapping("/test1") @GetMapping("/test1")
public String test1(@RequestBody List<Long> itemIds) { public AjaxResponse<List<SupplierInfoRsp>> test1(@RequestParam(name = "fuzzySearchText") String fuzzySearchText){
return supplierSendService.queryGoodsPurchase(itemIds); return rpcSupplierService.getSupplierInfo("aa","wb.mulongfei@mesg.corp.netease.com",fuzzySearchText);
} }
private FlowRpcSupplierService rpcSupplierService;
@Autowired
private FlowRpcSupplierSendService supplierSendService;
@PostMapping("/test2") @PostMapping("/test2")
public AjaxResponse<List<SupplierUserRsp>> test2(@RequestBody SupplierRelatedUserReq req) { public AjaxResponse<List<SupplierUserRsp>> test2(@RequestBody SupplierRelatedUserReq req) {
return supplierSendService.querySupplierRelatedUser(req); return supplierSendService.querySupplierRelatedUser(req);
@GetMapping("/test1")
public AjaxResponse<List<SupplierInfoRsp>> test1(@RequestParam(name = "fuzzySearchText") String fuzzySearchText){
return rpcSupplierService.getSupplierInfo("aa","wb.mulongfei@mesg.corp.netease.com",fuzzySearchText);
} }
@PostMapping("/test3") @PostMapping("/test3")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment