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;
|
}
|
}
|