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

com.mikuac.shiro.dto.action.response.StrangerInfoResp Maven / Gradle / Ivy

The newest version!
package com.mikuac.shiro.dto.action.response;

import com.alibaba.fastjson2.annotation.JSONField;
import lombok.Data;

/**
 * Created on 2021/7/8.
 *
 * @author Zero
 * @version $Id: $Id
 */
@Data
public class StrangerInfoResp {

    /**
     * QQ 号
     */
    @JSONField(name = "user_id")
    private Long userId;

    /**
     * 昵称
     */
    @JSONField(name = "nickname")
    private String nickname;

    /**
     * 性别 male 或 female 或 unknown
     */
    @JSONField(name = "sex")
    private String sex;

    /**
     * 年龄
     */
    @JSONField(name = "age")
    private Integer age;

    /**
     * qid id 身份卡
     */
    @JSONField(name = "qid")
    private String qid;

    /**
     * 等级
     */
    @JSONField(name = "level")
    private Integer level;

    /**
     * 在线天数?我猜的(
     */
    @JSONField(name = "login_days")
    private Integer loginDays;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy