xiaoyong931011
2022-03-07 ba9e0bc003fd0e8901b15952bae92e7fcf79ce12
src/main/java/com/xcong/excoin/modules/member/controller/MemberController.java
@@ -365,5 +365,26 @@
   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);
   }
   /**
    * 删除内转提币地址
    * @return
    */
   @ApiOperation(value="删除内转提币地址", notes="删除内转提币地址")
   @PostMapping(value="/memberDelCoinAddressIn")
   public Result  memberDelCoinAddressIn(@RequestBody @Valid MemberDelCoinAddressDto memberDelCoinAddressDto) {
      return memberService.memberDelCoinAddressIn(memberDelCoinAddressDto);
   }
}