| | |
| | | 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;
|
| | |
| | | * @date 2020-05-18
|
| | | **/
|
| | | @Slf4j
|
| | | @CrossOrigin("*")
|
| | | @Api(value = "个人中心接口", tags = "个人中心接口")
|
| | | @RestController
|
| | | @RequestMapping(value = "/api/member")
|