xiaoyong931011
2022-03-04 51143d89c943f7c837218e024aa6c5017913d8f8
src/main/java/com/xcong/excoin/modules/member/controller/MemberController.java
@@ -365,5 +365,15 @@
   public Result memberAddCoinAddressIn(@RequestBody @Valid MemberAddCoinAddressInDto memberAddCoinAddressDto) {
      return memberService.memberAddCoinAddressIn(memberAddCoinAddressDto);
   }
   /**
    *    提币申请--内转
    * @return
    */
   @ApiOperation(value="提交提币申请--内转", notes="提交提币申请--内转")
   @PostMapping(value="/memberSubmitCoinApplyIn")
   public Result memberSubmitCoinApplyIn(@RequestBody @Valid MemberSubmitCoinApplyInDto memberSubmitCoinApplyInDto) {
      return memberService.memberSubmitCoinApplyIn(memberSubmitCoinApplyInDto);
   }
    
}