xiaoyong931011
2020-11-23 bd141be68f96cf8c18949c160d65df7eff0cdb98
src/main/java/com/xcong/excoin/common/system/controller/LoginController.java
@@ -17,6 +17,7 @@
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.dto.WtWalletDto;
import com.xcong.excoin.common.system.entity.WtWallet;
import com.xcong.excoin.common.system.vo.LoginVo;
import com.xcong.excoin.configurations.properties.ApplicationProperties;
@@ -138,8 +139,8 @@
    @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);
    }
}