📄 rewardpunishvo.java
字号:
package com.galaxy.vo;
import java.util.Date;
/**
* RewardPunish generated by MyEclipse Persistence Tools
*/
public class RewardPunishVO implements java.io.Serializable {
// Fields
private Long rpId;
private UserInfoVO userInfo;
private String rpTitle;
private String rpContent;
private Date rpTime;
private String rpClass;
private String rpExtend;
// Constructors
/** default constructor */
public RewardPunishVO() {
}
/** minimal constructor */
public RewardPunishVO(Long rpId) {
this.rpId = rpId;
}
/** full constructor */
public RewardPunishVO(Long rpId, UserInfoVO userInfo, String rpTitle,
String rpContent, Date rpTime, String rpClass, String rpExtend) {
this.rpId = rpId;
this.userInfo = userInfo;
this.rpTitle = rpTitle;
this.rpContent = rpContent;
this.rpTime = rpTime;
this.rpClass = rpClass;
this.rpExtend = rpExtend;
}
// Property accessors
public Long getRpId() {
return this.rpId;
}
public void setRpId(Long rpId) {
this.rpId = rpId;
}
public UserInfoVO getUserInfo() {
return this.userInfo;
}
public void setUserInfo(UserInfoVO userInfo) {
this.userInfo = userInfo;
}
public String getRpTitle() {
return this.rpTitle;
}
public void setRpTitle(String rpTitle) {
this.rpTitle = rpTitle;
}
public String getRpContent() {
return this.rpContent;
}
public void setRpContent(String rpContent) {
this.rpContent = rpContent;
}
public Date getRpTime() {
return this.rpTime;
}
public void setRpTime(Date rpTime) {
this.rpTime = rpTime;
}
public String getRpClass() {
return this.rpClass;
}
public void setRpClass(String rpClass) {
this.rpClass = rpClass;
}
public String getRpExtend() {
return this.rpExtend;
}
public void setRpExtend(String rpExtend) {
this.rpExtend = rpExtend;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -