1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.dy.sso.busi;
|
|
| import io.swagger.v3.oas.annotations.media.Schema;
| import lombok.*;
|
| @Data
| @ToString
| @NoArgsConstructor
| @AllArgsConstructor
| @Builder
| @Schema(name = "登录用户值对象")
| public class UserVo {
| @Schema(description = "姓名")
| public String name ;//用户姓名
|
| @Schema(description = "手机号")
| public String phone ;//用户手机号
|
| @Schema(description = "token")
| public String token ;//
| }
|
|