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

com.haoxuer.discover.user.api.domain.response.UserResponse Maven / Gradle / Ivy

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

import com.haoxuer.discover.rest.base.ResponseObject;
import lombok.Data;

/**
 * Created by ada on 2017/6/29.
 */
@Data
public class UserResponse extends ResponseObject {

    private Long id;

    /**
     * 用户令牌
     */
    private String userToken;

    /**
     * 用户昵称
     */
    private String name;

    /**
     * 头像
     */
    private String avatar;

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

    /**
     * 有没有手机号码
     */
    private Boolean havePhone;

    private String openId;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy