1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package cn.iocoder.yudao.module.trade.controller.admin.base.system.user;
|
| import io.swagger.v3.oas.annotations.media.Schema;
| import lombok.Data;
|
| @Schema(description = "用户精简信息 VO")
| @Data
| public class UserSimpleBaseVO {
|
| @Schema(description = "用户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
| private Long id;
|
| @Schema(description = "用户昵称", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋艿")
| private String nickname;
|
| @Schema(description = "用户头像", example = "https://www.iocoder.cn/1.png")
| private String avatar;
|
| }
|
|