xiaoyong931011
2020-06-07 3312b506e4f3a840623071ab56fa8ec68816a811
src/main/java/com/xcong/excoin/modules/coin/controller/OrderCoinController.java
@@ -48,12 +48,11 @@
   @ApiOperation(value = "进入交易页面", notes = "进入交易页面")
   @ApiResponses({@ApiResponse( code = 200, message = "success", response = TransactionPageOfWalletCoinVo.class)})
   @ApiImplicitParams({
      @ApiImplicitParam(name = "symbol", value = "币种", required = true, dataType = "String", paramType="query"),
      @ApiImplicitParam(name = "type", value = "买入卖出类型1:买入,2:卖出", required = true, dataType = "String", paramType="query")
      @ApiImplicitParam(name = "symbol", value = "币种", required = true, dataType = "String", paramType="query")
   })
    @GetMapping(value = "/enterTransactionPageOfWalletCoin")
   public Result enterTransactionPageOfWalletCoin(String symbol,String type) {
      return orderCoinService.enterTransactionPageOfWalletCoin(symbol,type);
   public Result enterTransactionPageOfWalletCoin(String symbol) {
      return orderCoinService.enterTransactionPageOfWalletCoin(symbol);
   }
   
   /**
@@ -103,9 +102,12 @@
    */
   @ApiOperation(value = "获取币币交易历史订单信息", notes = "获取币币交易历史订单信息")
   @ApiResponses({@ApiResponse( code = 200, message = "success", response = OrderWalletCoinDealListVo.class)})
   @ApiImplicitParams({
      @ApiImplicitParam(name = "symbol", value = "币种", required = true, dataType = "String", paramType="query")
   })
    @GetMapping(value = "/findAllWalletCoinOrder")
   public Result  findAllWalletCoinOrder() {
      return orderCoinService.findAllWalletCoinOrder();
   public Result  findAllWalletCoinOrder(String symbol) {
      return orderCoinService.findAllWalletCoinOrder(symbol);
   }
   
   /**
@@ -159,4 +161,14 @@
      return orderCoinService.findCollectList();
   }
   
   /**
    * 币种搜索
    * @return
    */
   @ApiOperation(value = "币种搜索", notes = "币种搜索")
    @GetMapping(value = "/searchSymbolResultList")
   public Result  searchSymbolResultList() {
      return orderCoinService.searchSymbolResultList();
   }
}