?? 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;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -