📄 pointrecord.java
字号:
package com.briup.run.dao.bean;
import java.io.Serializable;
import java.util.Date;
public class PointRecord implements Serializable {
private static final long serialVersionUID = -5690893933336078072L;
private Long id;
private PointAction pointAction;
private String nickName;
private Date receiveDate;
public PointRecord() {
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getNickName() {
return nickName;
}
public void setNickName(String nickName) {
this.nickName = nickName;
}
public PointAction getPointAction() {
return pointAction;
}
public void setPointAction(PointAction pointAction) {
this.pointAction = pointAction;
}
public Date getReceiveDate() {
return receiveDate;
}
public void setReceiveDate(Date receiveDate) {
this.receiveDate = receiveDate;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -