puzhibing
2023-06-02 6303854b482179fefc3498739aed3f86e930e6fb
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
package com.agentdriving.user.modular.system.warpper;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @date 2023/3/23 10:00
 */
@Data
@ApiModel
public class UserInfo {
    @ApiModelProperty(value = "头像", required = false, dataType = "string")
    private String avatar;
    @ApiModelProperty(value = "紧急联系人", required = false, dataType = "string")
    private String emergencyContact;
    @ApiModelProperty(value = "紧急联系人电话", required = false, dataType = "string")
    private String emergencyPhone;
    @ApiModelProperty(value = "姓名", required = false, dataType = "string")
    private String nickname;
    @ApiModelProperty(value = "手机号", required = false, dataType = "string")
    private String phone;
    @ApiModelProperty(value = "验证码", required = false, dataType = "string")
    private String code;
}