BindPhoneRequest.java 2.07 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 91

public class BindPhoneRequest {
    String accessCode;
    String countryCode;
    String outId;
    String phoneNumber;
    int type;
    String uid;
    String verifyCode;


    @Override
    public String toString() {
        return "BindPhoneRequest{" +
                "accessCode='" + accessCode + '\'' +
                ", countryCode='" + countryCode + '\'' +
                ", outId='" + outId + '\'' +
                ", phoneNumber='" + phoneNumber + '\'' +
                ", type=" + type +
                ", uid='" + uid + '\'' +
                ", verifyCode='" + verifyCode + '\'' +
                '}';
    }

    public BindPhoneRequest(String accessCode, String countryCode, String outId, String phoneNumber, int type, String uid, String verifyCode) {
        this.accessCode = accessCode;
        this.countryCode = countryCode;
        this.outId = outId;
        this.phoneNumber = phoneNumber;
        this.type = type;
        this.uid = uid;
        this.verifyCode = verifyCode;
    }

    public String getAccessCode() {
        return accessCode;
    }

    public void setAccessCode(String accessCode) {
        this.accessCode = accessCode;
    }

    public String getCountryCode() {
        return countryCode;
    }

    public void setCountryCode(String countryCode) {
        this.countryCode = countryCode;
    }

    public String getOutId() {
        return outId;
    }

    public void setOutId(String outId) {
        this.outId = outId;
    }

    public String getPhoneNumber() {
        return phoneNumber;
    }

    public void setPhoneNumber(String phoneNumber) {
        this.phoneNumber = phoneNumber;
    }

    public int getType() {
        return type;
    }

    public void setType(int type) {
        this.type = type;
    }

    public String getUid() {
        return uid;
    }

    public void setUid(String uid) {
        this.uid = uid;
    }

    public String getVerifyCode() {
        return verifyCode;
    }

    public void setVerifyCode(String verifyCode) {
        this.verifyCode = verifyCode;
    }
}