| package com.doumee.dao.system.vo; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| /** | 
|  * Created by IntelliJ IDEA. | 
|  * | 
|  * @Author : Rk | 
|  * @create 2023/3/23 9:25 | 
|  */ | 
| @Data | 
| @ApiModel("查询用户返回类") | 
| public class UserResponse { | 
|   | 
|     @ApiModelProperty(value = "用户主键") | 
|     private Integer id; | 
|   | 
|     @ApiModelProperty(value = "微信昵称") | 
|     private String wechatName; | 
|   | 
|     @ApiModelProperty(value = "用户名") | 
|     private String userName; | 
|   | 
|     @ApiModelProperty(value = "真实姓名") | 
|     private String realname; | 
|   | 
|     @ApiModelProperty(value = "性别") | 
|     private Integer sex; | 
|   | 
|     @ApiModelProperty(value = "头像") | 
|     private String avatar; | 
|   | 
|     @ApiModelProperty(value = "头像前缀") | 
|     private String prefixUrl; | 
|   | 
|     @ApiModelProperty(value = "生日") | 
|     private String birthday; | 
|   | 
|     @ApiModelProperty(value = "用户手机号") | 
|     private String mobile; | 
|   | 
|     @ApiModelProperty(value = "用户状态:0=无会议;1=会议中") | 
|     private Integer status; | 
|   | 
|     @ApiModelProperty(value = "类型 0系统用户 1访客") | 
|     private Integer type; | 
|   | 
|     @ApiModelProperty(value = "部门名称") | 
|     private String departmentName; | 
|   | 
| } |