1
luodangjia
2025-01-22 3eb56cab8a5a453ac5e70b6e36618dde32431326
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package com.ruoyi.company.api.model;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.time.LocalDateTime;
 
@Data
@Schema(description = "用户详情")
public class UserDetail {
 
    @Schema(description = "用户id")
    private Long userId;
 
    @Schema(description = "公司名称")
    private String companyName;
 
    /** 统一社会信用代码 */
    @Schema(description = "统一社会信用代码")
    private String socialCode;
 
    /** 联系人姓名 */
    @Schema(description = "联系人姓名")
    private String contactName;
 
    /** 联系人手机号 */
    @Schema(description = "联系人手机号")
    private String contactPhone;
 
    /** 联系人邮箱 */
    @Schema(description = "联系人邮箱")
    private String email;
 
    /** 账号 */
    @Schema(description = "账号")
    private String accountName;
 
    /** 用户名称 */
    @Schema(description = "用户名称")
    private String userName;
 
    /** 头像 */
    @Schema(description = "头像")
    private String avatar;
 
    /** 注册时间 */
    @Schema(description = "注册时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime registerTime;
 
    /** 绑定手机号 */
    @Schema(description = "绑定手机号")
    private String phone;
 
    /** 账号ID */
    @Schema(description = "账号ID")
    private Long accountId;
 
    /** 登录密码 */
    @Schema(description = "登录密码")
    private String password;
 
}