whycxzp
2021-10-12 d5cf76188ad37f062f37ebce3464097203b4db05
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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import org.apache.ibatis.type.Alias;
 
@Alias("UserInf")
@TableName( schema = "`db_user`",value = "tb_user_inf")
public class UserInf {
 
    @TableId("uId")
    private Integer uId;
    @TableField("uName")
    private String uName;
 
    public Integer getUId() {
        return uId;
    }
 
    public void setUId(Integer uId) {
        this.uId = uId;
    }
 
    public String getUName() {
        return uName;
    }
 
    public void setUName(String uName) {
        this.uName = uName;
    }
}