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

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

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

import com.haoxuer.discover.rest.base.RequestTokenObject;

/**
 * Created by ada on 2017/6/29.
 */
public class SendCodeRequest extends RequestTokenObject {

    /**
     * 手机号码
     */
    private String phone;

    /**
     * 验证码类型 register,login
     */
    private String catalog;

    public String getPhone() {
        return phone;
    }

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

    public String getCatalog() {
        return catalog;
    }

    public void setCatalog(String catalog) {
        this.catalog = catalog;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy