whyclxw
2021-04-15 b40ac12d6231f261581fb4281c905819530e934d
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
package com.example.lxw.pojo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.ToString;
 
import java.io.Serializable;
 
/**
 * @author lxw
 * @create 2021-04-13 16:40
 */
@Data
@ToString
@AllArgsConstructor
@NoArgsConstructor
@TableName(schema = "db_user",value = "tb_user_inf")
public class User_inf implements Serializable {
    @TableId(value = "uId")
    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 java.sql.Date uBirthDay;
    private java.sql.Date uAccessionDay;
    private String uSex;
    private String uDepartment;
    private String uProTitle;
    private String uAuthority;
    private String uJobGroup;
    private String uDuties;
    private String uTasks;
    private long uBaojiUsr;
    private String uNote;
    private String upassword;
    private String uPubKeyX;
    private String uPubKeyY;
    @TableField(value = "uKey_ID")
    private String uKeyId;
    @TableField(value = "face_id")
    private long faceId;
    private String license;
    @TableField(exist = false)
    private String note;
    @TableField(exist = false)
    private UserBattgroupBaojigroupUsr baojigroupUsr;
 
}