fix
Helius
2021-11-05 397bc9d79933b42c5ecb721bf76ec4699f47399e
src/main/java/com/xcong/excoin/modules/member/controller/MemberController.java
@@ -4,11 +4,7 @@
import javax.validation.Valid;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
import com.xcong.excoin.common.response.Result;
import com.xcong.excoin.modules.member.parameter.dto.MemberAddCoinAddressDto;
@@ -51,6 +47,7 @@
 * @date 2020-05-18
 **/
@Slf4j
@CrossOrigin("*")
@Api(value = "个人中心接口", tags = "个人中心接口")
@RestController
@RequestMapping(value = "/api/member")
@@ -360,7 +357,8 @@
    @ApiOperation(value="提交提币申请", notes="提交提币申请")
   @PostMapping(value="/memberSubmitCoinApply")
   public Result memberSubmitCoinApply(@RequestBody @Valid MemberSubmitCoinApplyDto memberSubmitCoinApplyDto) {
      return memberService.memberSubmitCoinApply(memberSubmitCoinApplyDto);
       return Result.fail("暂未开放提币");
//      return memberService.memberSubmitCoinApply(memberSubmitCoinApplyDto);
   }
    
}