南京地铁检修用FBS项目(springboot-mybatis框架)
rzg
2020-10-21 498770edd4aebe9bb22f0d94473132606cc483bd
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
package com.yckj.bean;
 
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
 
/**
 * tb_user_inf
 * @author 
 */
@Data
public class TbUserPaixiu implements Serializable {
    private Long uid;
 
    private String usnid;
 
    private String uname;
 
    private String ushenfenid;
 
    private String uemployeeid;
 
    private String utelephone;
 
    private String umobilephone;
 
    private String uemail;
 
    private String uaddr;
 
    private Date ubirthday;
 
    private Date uaccessionday;
 
    private String usex;
 
    private String udepartment;
 
    private String uprotitle;
 
    private String uauthority;
 
    private String ujobgroup;
 
    private String uduties;
 
    private String utasks;
 
    private Boolean ubaojiusr;
 
    private String unote;
 
    private String upassword;
 
    private static final long serialVersionUID = 1L;
}