智慧保安后台管理-外网项目备份
Administrator
2021-12-15 d47e5818d63bef779ff8c4cef79382ae63e99fb4
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
/*
 *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions are met:
 *
 *  Redistributions of source code must retain the above copyright notice,
 *  this list of conditions and the following disclaimer.
 *  Redistributions in binary form must reproduce the above copyright
 *  notice, this list of conditions and the following disclaimer in the
 *  documentation and/or other materials provided with the distribution.
 *  Neither the name of the dreamlu.net developer nor the names of its
 *  contributors may be used to endorse or promote products derived from
 *  this software without specific prior written permission.
 *  Author: Chill 庄骞 (smallchill@163.com)
 */
package org.springblade.modules.system.vo;
 
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springblade.modules.system.entity.User;
 
/**
 * 视图实体类
 *
 * @author Chill
 */
@Data
@EqualsAndHashCode(callSuper = true)
@ApiModel(value = "UserVO对象", description = "UserVO对象")
public class UserVO extends User {
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键ID
     */
    @JsonSerialize(using = ToStringSerializer.class)
    private Long id;
 
    /**
     * 密码
     */
    @JsonIgnore
    private String password;
 
    /**
     * 租户名
     */
    private String tenantName;
 
    /**
     * 用户平台名
     */
    private String userTypeName;
 
    /**
     * 角色名
     */
    private String roleName;
 
    /**
     * 部门名
     */
    private String deptName;
 
    /**
     * 岗位名
     */
    private String postName;
 
    /**
     * 性别
     */
    private String sexName;
 
    /**
     * 拓展信息
     */
    private String userExt;
 
    /**
     * 经度
     */
    private String longitude;
 
    /**
     * 纬度
     */
    private String latitude;
 
    /**
     * 报名状态
     */
    private Integer applyStatus;
 
    /**
     * 报名id
     */
    private Long applyId;
 
    /**
     * 角色别名
     */
    private String roleAlias;
 
    /**
     * 年齡
     */
    private Integer age;
 
    /**
     * 考试类型  1:正式考试   2:模拟考试
     */
    private Integer examType;
 
 
    /**
     * 培训公司id
     */
    private String trainingUnitId;
 
    /**
     * 根据身份证计算性别
     */
    private Integer sexs;
 
    /**
     * 准考证号
     */
    private String candidateNo;
 
 
    /**
     * 派遣单位名称
     */
    private String dispatchUnitName;
 
    /**
     * 派遣开始时间
     */
    private String dispatchStartTime;
 
    /**
     * 派遣结束时间
     */
    private String dispatchEndTime;
 
 
 
 
}