package com.yidianling.user.http.request; public class ResetPwdRequest { String channelId; String newPassword; String countryCode; String code; int type; String phoneNumber; String version; public ResetPwdRequest(String channelId, String newPassword, String countryCode, String code, int type, String phoneNumber, String version) { this.channelId = channelId; this.newPassword = newPassword; this.countryCode = countryCode; this.code = code; this.type = type; this.phoneNumber = phoneNumber; this.version = version; } public String getchannelId() { return channelId; } public void setchannelId(String channelId) { this.channelId = channelId; } public String getNewPassword() { return newPassword; } public void setNewPassword(String newPassword) { this.newPassword = newPassword; } public String getCountryCode() { return countryCode; } public void setCountryCode(String countryCode) { this.countryCode = countryCode; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public int getType() { return type; } public void setType(int type) { this.type = type; } public String getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; } public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } @Override public String toString() { return "ResetPwdRequest{" + "channelId='" + channelId + '\'' + ", newPassword='" + newPassword + '\'' + ", countryCode='" + countryCode + '\'' + ", code='" + code + '\'' + ", type=" + type + ", phoneNumber='" + phoneNumber + '\'' + ", version='" + version + '\'' + '}'; } }