| | |
| | | import com.xcong.excoin.modules.coin.entity.OrderCoinsEntity;
|
| | | import com.xcong.excoin.modules.symbols.constants.SymbolsConstats;
|
| | | import org.springframework.validation.annotation.Validated;
|
| | | import org.springframework.web.bind.annotation.GetMapping;
|
| | | import org.springframework.web.bind.annotation.PostMapping;
|
| | | import org.springframework.web.bind.annotation.RequestBody;
|
| | | import org.springframework.web.bind.annotation.RequestMapping;
|
| | | import org.springframework.web.bind.annotation.RestController;
|
| | | import org.springframework.web.bind.annotation.*;
|
| | |
|
| | | import com.xcong.excoin.common.response.Result;
|
| | | import com.xcong.excoin.modules.coin.parameter.dto.CancelEntrustWalletCoinOrderDto;
|
| | |
| | | @Api(value = "币币交易接口", tags = "币币交易接口")
|
| | | @RestController
|
| | | @RequestMapping(value = "/api/orderCoin")
|
| | | @CrossOrigin("*")
|
| | | public class OrderCoinController {
|
| | |
|
| | | @Resource
|
| | |
| | | return orderCoinService.searchSymbolResultList();
|
| | | }
|
| | |
|
| | | /**
|
| | | * 获取币币交易历史订单信息
|
| | | * @return
|
| | | */
|
| | | @ApiOperation(value = "获取币币交易历史订单信息", notes = "获取币币交易历史订单信息")
|
| | | @ApiResponses({@ApiResponse( code = 200, message = "success", response = OrderWalletCoinDealVo.class)})
|
| | | @GetMapping(value="/deal/list")
|
| | | public Result findAllWalletCoinOrder() {
|
| | | return orderCoinService.findAllWalletCoinOrder();
|
| | | }
|
| | | }
|