| | |
| | | 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.RequestHeader;
|
| | | import org.springframework.web.bind.annotation.RequestMapping;
|
| | | import org.springframework.web.bind.annotation.RequestMethod;
|
| | | import org.springframework.web.bind.annotation.RequestParam;
|
| | | import org.springframework.web.bind.annotation.RestController;
|
| | |
|
| | | import com.xcong.excoin.common.response.Result;
|
| | |
| | | import com.xcong.excoin.modules.member.parameter.dto.MemberAuthenticationDto;
|
| | | import com.xcong.excoin.modules.member.parameter.dto.MemberBindEmailDto;
|
| | | import com.xcong.excoin.modules.member.parameter.dto.MemberBindPhoneDto;
|
| | | import com.xcong.excoin.modules.member.parameter.dto.MemberDelCoinAddressDto;
|
| | | import com.xcong.excoin.modules.member.parameter.dto.MemberDelPaymethodDto;
|
| | | import com.xcong.excoin.modules.member.parameter.dto.MemberForgetPwdDto;
|
| | | import com.xcong.excoin.modules.member.parameter.dto.MemberPaymethodDto;
|
| | |
| | |
|
| | | /**
|
| | | * 添加提币地址
|
| | | *
|
| | | * @param token
|
| | | * @return
|
| | | */
|
| | | @ApiOperation(value = "添加提币地址", notes = "添加提币地址")
|
| | | @PostMapping(value = "/memberAddCoinAddress")
|
| | | public Result memberAddCoinAddress(@RequestBody @Valid MemberAddCoinAddressDto memberAddCoinAddressDto) {
|
| | | return memberService.memberAddCoinAddress(memberAddCoinAddressDto);
|
| | | }
|
| | | |
| | | /**
|
| | | * 删除提币地址
|
| | | * @return
|
| | | */
|
| | | @ApiOperation(value="删除提币地址", notes="删除提币地址")
|
| | | @PostMapping(value="/memberDelCoinAddress")
|
| | | public Result memberDelCoinAddress(@RequestBody @Valid MemberDelCoinAddressDto memberDelCoinAddressDto) {
|
| | | return memberService.memberDelCoinAddress(memberDelCoinAddressDto);
|
| | | }
|
| | |
|
| | | /**
|
| | |
| | |
|
| | |
|
| | |
|
| | | |
| | | }
|