|
|
@@ -43,12 +43,12 @@ public class IpInterfaceCallbackController {
|
|
|
/**
|
|
|
* 查询接口的调用详情
|
|
|
*
|
|
|
- * @param ipInterfaceCalledQueryParam 筛选条件
|
|
|
+ * @param id 筛选条件
|
|
|
* @return 查询结果
|
|
|
*/
|
|
|
@Operation(summary = "查询接口调用详情")
|
|
|
@GetMapping("/detail/{id}")
|
|
|
- public BaseReturnDto<IpInterfaceCallVO> interfaceDetail(@PathVariable Long id){
|
|
|
+ public BaseReturnDto<InterfaceCalledDetail> interfaceDetail(@PathVariable Long id){
|
|
|
InterfaceCalledDetail vo = ipOrderService.interfaceDetail(id);
|
|
|
return BaseReturnDto.success(vo);
|
|
|
}
|
|
|
@@ -61,7 +61,7 @@ public class IpInterfaceCallbackController {
|
|
|
*/
|
|
|
@Operation(summary = "查询接口回调记录")
|
|
|
@PostMapping("/callback/history/{id}")
|
|
|
- public BaseReturnDto<CallbackHistoryVO> queryList(@PathVariable long id){
|
|
|
+ public BaseReturnDto<List<CallbackHistoryVO>> queryList(@PathVariable long id){
|
|
|
List<CallbackHistoryVO> list = ipOrderService.callbackHistory(id);
|
|
|
return BaseReturnDto.success(list);
|
|
|
}
|