ResetPwdRequest.java 2.1 KB
Newer Older
1
package com.yidianling.user.http.request;
konghaorui committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90

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 + '\'' +
                '}';
    }
}