地质所 沉降监测网建设项目
chenhuan
2024-05-16 0fdd42e318f51f9e3c6581473416af1cca69877f
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
package com.javaweb.platform.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.javaweb.common.annotation.Excel;
import com.javaweb.common.core.domain.BaseEntity;
import java.util.Date;
 
/**
 * 用户登录次数对象 js_user_login_count
 * 
 * @author zzf
 * @date 2022-04-03
 */
public class UserLoginCount extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private String id;
 
    /** 用户名 */
    @Excel(name = "用户名")
    private String userName;
 
    /** 登录时间 */
    @Excel(name = "登录时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date loginTime;
 
    /** 次数 */
    @Excel(name = "次数")
    private int count;
 
    /** 类型 */
    @Excel(name = "类型")
    private String type;
 
    public void setId(String id) 
    {
        this.id = id;
    }
 
    public String getId() 
    {
        return id;
    }
    public void setUserName(String userName) 
    {
        this.userName = userName;
    }
 
    public String getUserName() 
    {
        return userName;
    }
    public void setLoginTime(Date loginTime) 
    {
        this.loginTime = loginTime;
    }
 
    public Date getLoginTime() 
    {
        return loginTime;
    }
    public void setCount(int count) 
    {
        this.count = count;
    }
 
    public int getCount() 
    {
        return count;
    }
    public void setType(String type) 
    {
        this.type = type;
    }
 
    public String getType() 
    {
        return type;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("userName", getUserName())
            .append("loginTime", getLoginTime())
            .append("count", getCount())
            .append("type", getType())
            .toString();
    }
}