zqy
2024-07-07 780fa6d4016c6e616bbb4b3d29d33dbf3a40cbd6
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
package com.ruoyi.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 存放登录信息的用户表
 * </p>
 *
 * @author ojq
 * @since 2023-03-14
 */
@TableName("z_login_user")
public class ZLoginUser implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 用户id
     */
    @TableId(value = "user_id", type = IdType.AUTO)
    private Integer userId;
 
    /**
     * 用于登录的用户名
     */
    private String username;
 
    /**
     * 密码
     */
    private String password;
 
    /**
     * 用户可登录的状态
     */
    private Integer status;
 
    /**
     * 注册时间
     */
    private LocalDateTime createTime;
 
    /**
     * 更新用户登录信息时间
     */
    private LocalDateTime updateTime;
 
    /**
     * 上次登陆时间
     */
    private LocalDateTime loginTime;
 
    /**
     * 要写的一些备注
     */
    private String remark;
 
 
    public Integer getUserId() {
        return userId;
    }
 
    public void setUserId(Integer userId) {
        this.userId = userId;
    }
 
    public String getUsername() {
        return username;
    }
 
    public void setUsername(String username) {
        this.username = username;
    }
 
    public String getPassword() {
        return password;
    }
 
    public void setPassword(String password) {
        this.password = password;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public LocalDateTime getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(LocalDateTime createTime) {
        this.createTime = createTime;
    }
 
    public LocalDateTime getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(LocalDateTime updateTime) {
        this.updateTime = updateTime;
    }
 
    public LocalDateTime getLoginTime() {
        return loginTime;
    }
 
    public void setLoginTime(LocalDateTime loginTime) {
        this.loginTime = loginTime;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    @Override
    public String toString() {
        return "ZLoginUser{" +
        "userId=" + userId +
        ", username=" + username +
        ", password=" + password +
        ", status=" + status +
        ", createTime=" + createTime +
        ", updateTime=" + updateTime +
        ", loginTime=" + loginTime +
        ", remark=" + remark +
        "}";
    }
}