whycxzp
2021-01-08 d04fed7dfceee61b5dd6ba10f23ff16c80458f47
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
package com.whyc.dto;
 
/**
 * 用户登录后保存的信息
 */
public class UserLoginInfo {
    private String username;
    private Long timestamp;
 
    public UserLoginInfo(String username, Long timestamp) {
        this.username = username;
        this.timestamp = timestamp;
    }
 
    public String getUsername() {
        return username;
    }
 
    public void setUsername(String username) {
        this.username = username;
    }
 
    public Long getTimestamp() {
        return timestamp;
    }
 
    public void setTimestamp(Long timestamp) {
        this.timestamp = timestamp;
    }
}