| | |
| | | @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 = "获取我的委托单详情") |