📄 pointaction.java
字号:
package com.briup.run.pojos;
import java.util.HashSet;
import java.util.Set;
/**
* Pointaction entity.
*
* @author MyEclipse Persistence Tools
*/
public class Pointaction implements java.io.Serializable {
// Fields
private Long id;
private String actionname;
private Long point;
private String description;
private Set pointrecords = new HashSet(0);
// Constructors
/** default constructor */
public Pointaction() {
}
/** minimal constructor */
public Pointaction(Long point) {
this.point = point;
}
/** full constructor */
public Pointaction(String actionname, Long point, String description,
Set pointrecords) {
this.actionname = actionname;
this.point = point;
this.description = description;
this.pointrecords = pointrecords;
}
// Property accessors
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public String getActionname() {
return this.actionname;
}
public void setActionname(String actionname) {
this.actionname = actionname;
}
public Long getPoint() {
return this.point;
}
public void setPoint(Long point) {
this.point = point;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Set getPointrecords() {
return this.pointrecords;
}
public void setPointrecords(Set pointrecords) {
this.pointrecords = pointrecords;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -