ChangePhone.java 393 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

//更换手机时最后校验验证码和手机
public class ChangePhone {
    public String country_code;
    public String vcode;
    public String userName;

    public ChangePhone(String country_code, String vcode, String userName) {
        this.country_code = country_code;
        this.vcode = vcode;
        this.userName = userName;
    }

}