xiaoyong931011
2020-06-02 987b08f018be10550d6f48242633bd9a1d85a865
src/main/java/com/xcong/excoin/modules/coin/controller/OrderCoinController.java
@@ -102,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);
   }
   
   /**