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
package cn.flightfeather.supervision.domain.ds1.entity
 
import com.fasterxml.jackson.annotation.JsonInclude
import javax.persistence.Column
import javax.persistence.Id
import javax.persistence.Table
import io.swagger.annotations.ApiModelProperty
import io.swagger.annotations.ApiModel
 
@Table(name = "sm_t_userinfo")
@JsonInclude(JsonInclude.Include.NON_NULL)
@ApiModel(value = "Userinfo")
public class Userinfo {
    @Id
    @Column(name = "UI_GUID")
    @ApiModelProperty(value = "主键16位guid")
    var guid: String? = null
 
    @Column(name = "UI_AcountName")
    @ApiModelProperty(value = "账户名称")
    var acountname: String? = null
 
    @Column(name = "UI_RealName")
    @ApiModelProperty(value = "用户昵称")
    var realname: String? = null
 
    /**
     * 规定字母加数字
     */
    @Column(name = "UI_Password")
    @ApiModelProperty(value = "密码,规定字母加数字")
    var password: String? = null
 
    /**
     * 值域表中获取(1:我司用户;2:被监管对象单位用户;3:主管部门用户)
     */
    @Column(name = "UI_UserTypeID")
    @ApiModelProperty(value = "值域表中获取(1:我司用户;2:被监管对象单位用户;3:主管部门用户)")
    var usertypeid: Byte? = null
 
    /**
     * 值域表中获取
     */
    @Column(name = "UI_UserType")
    @ApiModelProperty(value = "用户类型,值域表中获取")
    var usertype: String? = null
 
    @Column(name = "D_GUID")
    @ApiModelProperty(value = "所属场景guid")
    var dGuid: String? = null
 
    @Column(name = "UI_DepartmentName")
    @ApiModelProperty(value = "所属场景名称")
    var departmentname: String? = null
 
    @Column(name = "UI_IsEnable")
    @ApiModelProperty(value = "是否可用")
    var isenable: Boolean? = null
 
    @Column(name = "UI_WorkNo")
    @ApiModelProperty(value = "用户编号")
    var workno: String? = null
 
    @Column(name = "UI_Telephone")
    @ApiModelProperty(value = "用户电话")
    var telephone: String? = null
 
    @Column(name = "UI_WechatID")
    @ApiModelProperty(value = "用户微信")
    var wechatid: String? = null
 
    @Column(name = "UI_Extension1")
    @ApiModelProperty(value = "扩展字段一")
    var extension1: String? = null
 
    @Column(name = "UI_Extension2")
    @ApiModelProperty(value = "扩展字段二")
    var extension2: String? = null
 
    @Column(name = "UI_Extension3")
    @ApiModelProperty(value = "扩展字段三")
    var extension3: String? = null
 
    @Column(name = "UI_Remark")
    @ApiModelProperty(value = "所属区县名称")
    var remark: String? = null
}