All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.haoxuer.discover.user.api.domain.request.UserChangePhoneRequest Maven / Gradle / Ivy

There is a newer version: 3.3.18-20230117
Show newest version
package com.haoxuer.discover.user.api.domain.request;

/**
 * Created by ada on 2017/7/4.
 */
public class UserChangePhoneRequest extends UserTokenRequest {

    /**
     * 手机验证码
     */
    String code;


    /**
     * 新的手机号码
     */
    String phone;


    public String getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }

    public String getPhone() {
        return phone;
    }

    public void setPhone(String phone) {
        this.phone = phone;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy