111
k94314517
2023-11-08 a717d60f6d184d6d71f745400a9ca2fda8b5ab48
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.doumee.core.model.api;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * web端登录用户信息
 * @author 江蹄蹄
 * @date 2022/03/15 09:54
 */
@Data
public class WebLoginUserInfo implements Serializable {
    @ApiModelProperty(value = "编号")
    private Integer   id         ;//            编号
 
    @ApiModelProperty(value = "AC题数排名")
    private String rank          ;
    @ApiModelProperty(value = "上次登陆时间")
    private String  last_login     ;//
    @ApiModelProperty(value = "用户名")
    private String  username      ;//
    @ApiModelProperty(value = "姓名")
    private String   real_name    ;//
    @ApiModelProperty(value = "昵称")
    private String  nickname      ;//
    @ApiModelProperty(value = "头像url")
    private String  avatar       ;//
    @ApiModelProperty(value = "校管家学号")
    private String  serial       ;//
    @ApiModelProperty(value = "性别")
    private String  sex          ;//
    @ApiModelProperty(value = "手机号")
    private String phone         ;//
    @ApiModelProperty(value = "用户类型")
    private String  user_type      ;//
    @ApiModelProperty(value = "账户不可用")
    private String  is_disabled     ;//
    @ApiModelProperty(value = "介绍")
    private String   introduction     ;//
    @ApiModelProperty(value = "答对题数")
    private Integer  accepted_number    ;//
    @ApiModelProperty(value = "总成绩")
    private Integer total_score            ;//
    @ApiModelProperty(value = "总积分")
    private Integer total_integral         ;//
    @ApiModelProperty(value = "总提交数量")
    private Integer    submission_number ;//
 
}