📄 pointrecord.java
字号:
package com.briup.run.pojos;
import java.util.Date;
/**
* Pointrecord entity.
*
* @author MyEclipse Persistence Tools
*/
public class Pointrecord implements java.io.Serializable {
// Fields
private Long id;
private Pointaction pointaction;
private String nickname;
private Date receivedate;
// Constructors
/** default constructor */
public Pointrecord() {
}
/** minimal constructor */
public Pointrecord(String nickname, Date receivedate) {
this.nickname = nickname;
this.receivedate = receivedate;
}
/** full constructor */
public Pointrecord(Pointaction pointaction, String nickname,
Date receivedate) {
this.pointaction = pointaction;
this.nickname = nickname;
this.receivedate = receivedate;
}
// Property accessors
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public Pointaction getPointaction() {
return this.pointaction;
}
public void setPointaction(Pointaction pointaction) {
this.pointaction = pointaction;
}
public String getNickname() {
return this.nickname;
}
public void setNickname(String nickname) {
this.nickname = nickname;
}
public Date getReceivedate() {
return this.receivedate;
}
public void setReceivedate(Date receivedate) {
this.receivedate = receivedate;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -