Helius
2021-05-21 53eb8720b96e1ce038a887695d5a6542c1c2e7fe
src/main/java/com/xcong/excoin/modules/otc/controller/OtcEntrustOrderController.java
@@ -62,9 +62,9 @@
    @ApiResponses({
            @ApiResponse(code = 200, message = "success", response = EntrustListInfoVo.class)
    })
    @GetMapping(value = "/findOwnEntrustOrderList")
    public Result findOwnEntrustOrderList() {
        return Result.ok(otcEntrustOrderService.findOwnEntrustOrder());
    @PostMapping(value = "/findOwnEntrustOrderList")
    public Result findOwnEntrustOrderList(@RequestBody EntrustOrderListDto orderListDto) {
        return Result.ok(otcEntrustOrderService.findOwnEntrustOrder(orderListDto));
    }
    @ApiOperation(value = "获取我的委托单详情")