whycxzp
2025-05-08 609031b741016b72fc688068bda3b28d622cc68e
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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.ToString;
 
import java.util.Date;
 
@Data
@ToString
@TableName(schema = "db_power_intelligence",value = "tb_user")
public class User{
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    private String name;
 
    private String pwd;
 
    private Integer sex;
 
    private String email;
 
    private String phoneNumber;
 
    private Integer roleId;
 
    private Date createTime;
 
    public User() {
    }
 
    public User(Integer id, String name) {
        this.id = id;
        this.name = name;
    }
}