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
| package com.whyc.pojo.db_user;
|
| 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_user",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 Date createTime;
|
| public User() {
| }
|
| public User(Integer id, String name) {
| this.id = id;
| this.name = name;
| }
| }
|
|