| package com.doumee.dao.business.web.response; | 
|   | 
| 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 String id; | 
|   | 
|     @ApiModelProperty(value = "姓名") | 
|     private String name; | 
|   | 
|     @ApiModelProperty(value = "手机号") | 
|     private String mobile; | 
|   | 
|     @ApiModelProperty(value = "昵称") | 
|     private String nickname; | 
|   | 
|     @ApiModelProperty(value = "头像") | 
|     private String imgurl; | 
|   | 
|     @ApiModelProperty(value = "头像前缀") | 
|     private String prefixUrl; | 
|   | 
|   | 
|     @ApiModelProperty(value = "微信openid") | 
|     private String openid; | 
|   | 
|     @ApiModelProperty(value = "性别") | 
|     private Integer sex; | 
|   | 
|   | 
|   | 
| } |