Helius
2021-05-21 1b5131451c896d6a3b2c9f72b3d23dc531eb52db
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 = "获取我的委托单详情")