CheckPhone.java 909 Bytes
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

public class CheckPhone {
    String ffrom;
    InitPhoneRequest initPhoneRequest;

    public CheckPhone(String ffrom, InitPhoneRequest initPhoneRequest) {
        this.ffrom = ffrom;
        this.initPhoneRequest = initPhoneRequest;
    }

    public String getFfrom() {
        return ffrom;
    }

    public void setFfrom(String ffrom) {
        this.ffrom = ffrom;
    }

    public InitPhoneRequest getInitPhoneRequest() {
        return initPhoneRequest;
    }

    public void setInitPhoneRequest(InitPhoneRequest initPhoneRequest) {
        this.initPhoneRequest = initPhoneRequest;
    }

    @Override
    public String toString() {
        return "{" +
                "ffrom='" + ffrom + '\'' +
                ", initPhoneRequest=" + initPhoneRequest +
                '}';
    }
}

//  "phoneNumber": "18258897036",
//          "sdkVersion": "0.001"