广州市综治平台后端
xusd
2025-06-07 36306491396230522fa20585c2621a7fc899849a
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
package cn.huge.module.cust.dto;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @title: 公众用户表数据传输类
 * @description: 公众用户表数据传输类
 * @company:hugeinfo
 * @author: liyj
 * @time: 2022-04-12 11:38:03
 * @version 1.0.0
 */
@Data
public class PaUserDTO {
 
    /**
     * 当事人编号
     */
    private String id;
 
    /**
     * 姓名
     */
    private String trueName;
 
    /**
     * 性别
     */
    private String sex;
 
    /**
     * 性别名称
     */
    private String sexName;
 
    /**
     * 手机号码
     */
    private String mobile;
 
    /**
     * 身份证号码
     */
    private String idcard;
 
    /**
     * 电子邮箱
     */
    private String email;
 
    /**
     * 微信号
     */
    private String wechat;
 
    /**
     * QQ号
     */
    private String qq;
 
    /**
     * 现居地省
     */
    private String prov;
 
    /**
     * 现居地省名称
     */
    private String provName;
 
    /**
     * 现居地市
     */
    private String city;
 
    /**
     * 现居地市名称
     */
    private String cityName;
 
    /**
     * 现居地区
     */
    private String area;
 
    /**
     * 现居地区名称
     */
    private String areaName;
 
    /**
     * 现居地街道
     */
    private String road;
 
    /**
     * 现居地街道名称
     */
    private String roadName;
 
    /**
     * 现居地社区
     */
    private String village;
 
    /**
     * 现居地社区名称
     */
    private String villageName;
 
    /**
     * 现居地详细地址
     */
    private String addr;
 
    /**
     * 头像
     */
    private String avatar;
 
    /**
     * 实名认证状态,0:未认证,1:已认证
     */
    private Integer realStatus;
 
    /**
     * 用户状态,0:停用,1:启用
     */
    private Integer status;
 
    /**
     * 关注纠纷类型,多个用,隔开
     */
    private String followCaseType;
 
    /**
     * 删除状态,0:未删除,1:已删除
     */
    @TableLogic
    private Integer deleteStatus;
 
    /**
     * 客户编号
     */
    private String custId;
 
    /**
     * 创建时间
     */
    private Date createTime;
 
    /**
     * 更新时间
     */
    private Date updateTime;
 
}