| | |
| | | import com.xcong.excoin.common.system.dto.LoginDto; |
| | | import com.xcong.excoin.common.system.dto.OutCenterRegisterDto; |
| | | import com.xcong.excoin.common.system.dto.RegisterDto; |
| | | import com.xcong.excoin.common.system.entity.WtWallet; |
| | | import com.xcong.excoin.common.system.vo.LoginVo; |
| | | import com.xcong.excoin.common.system.dto.WtWalletDto; |
| | | import com.xcong.excoin.configurations.properties.ApplicationProperties; |
| | | import com.xcong.excoin.configurations.properties.SecurityProperties; |
| | | import com.xcong.excoin.modules.login.vo.LoginVo; |
| | | import com.xcong.excoin.modules.member.service.MemberService; |
| | | import com.xcong.excoin.utils.RedisUtils; |
| | | |
| | |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200,message = "OK",response = LoginVo.class), |
| | | }) |
| | | public Result recovery(@RequestBody WtWallet wallet) { |
| | | return memberservice.recovery(wallet); |
| | | public Result recovery(@RequestBody WtWalletDto wtWalletDto) { |
| | | return memberservice.recovery(wtWalletDto); |
| | | } |
| | | |
| | | } |