| | |
| | | package com.xcong.excoin.modules.contract.controller; |
| | | |
| | | import com.xcong.excoin.common.response.Result; |
| | | import com.xcong.excoin.modules.contract.parameter.dto.ChangeBondDto; |
| | | import com.xcong.excoin.modules.contract.parameter.dto.ProfitOrLessDto; |
| | | import com.xcong.excoin.modules.contract.parameter.dto.SubmitOrderDto; |
| | | import com.xcong.excoin.modules.contract.parameter.vo.HoldOrderListVo; |
| | |
| | | return contractHoldOrderService.cancelHoldOrderBatch(); |
| | | } |
| | | |
| | | @ApiOperation(value = "未完成--设置止盈止损") |
| | | @ApiOperation(value = "设置止盈止损") |
| | | @PostMapping(value = "/setTargetProfitOrLoss") |
| | | public Result setTargetProfitOrLoss(@RequestBody @Validated ProfitOrLessDto profitOrLessDto) { |
| | | return null; |
| | | return contractHoldOrderService.setTargetProfitOrLess(profitOrLessDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "未完成--调整保证金") |
| | | @PostMapping(value = "/tuneUpBond") |
| | | public Result tuneUpBond() { |
| | | return null; |
| | | @ApiOperation(value = "调整保证金") |
| | | @PostMapping(value = "/changeBond") |
| | | public Result changeBond(ChangeBondDto changeBondDto) { |
| | | return contractHoldOrderService.changeBond(changeBondDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "未完成--分页查询历史订单列表") |