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
58
59
60
61
62
63
| package org.example.pojo;
|
| import com.baomidou.mybatisplus.annotation.IdType;
| import com.baomidou.mybatisplus.annotation.TableId;
| import lombok.Data;
|
| import java.sql.Date;
|
| /**
| * @program: demo
| * @description:
| * @create: 2024-07-29 11:06
| **/
| @Data
| public class User {
|
| @TableId(type = IdType.AUTO)
| /**
| * id
| */
| private Integer id;
|
| /**
| * 账号
| */
| private String account;
|
| /**
| * 密码
| */
| private String password;
|
| /**
| * 是否管理员 0 否 1 是
| */
| private Integer isRoot;
|
| /**
| * 添加时间
| */
| private Date addTime;
|
| /**
| * 到期时间
| */
| private Date endTime;
|
| /**
| * 是否显示 0 是 1 否
| */
| private Integer isShow;
|
| /**
| * 是否锁定 0 否 1 是
| */
| private Integer isLock;
|
| /**
| * 设备数量
| */
| private Integer deviceNumber;
|
| }
|
|