xiaoyong931011
2021-04-09 03c9bbd8d9d283a617fb81521ec89cb1c17cc3cb
src/main/java/com/xcong/excoin/modules/member/controller/MemberController.java
@@ -372,11 +372,12 @@
    @ApiOperation(value = "提币币种可用资金", notes = "提币币种可用资金")
    @ApiResponses({@ApiResponse( code = 200, message = "success", response = MemberAvivableCoinInfoVo.class)})
    @ApiImplicitParams({
      @ApiImplicitParam(name = "symbol", value = "币种", required = true, dataType = "String", paramType="query")
      @ApiImplicitParam(name = "symbol", value = "币种", required = true, dataType = "String", paramType="query"),
      @ApiImplicitParam(name = "label", value = "label", required=false, dataType = "String", paramType="query")
   })
    @GetMapping(value = "/memberAvivableCoinInfo")
   public Result memberAvivableCoinInfo(String symbol) {
      return memberService.memberAvivableCoinInfo(symbol);
   public Result memberAvivableCoinInfo(String symbol,String label) {
      return memberService.memberAvivableCoinInfo(symbol,label);
   }
    
    /**