rewardpunishvo.java
来自「J2ee开发的 人事管理系统 使用oracle数据库 myeclips平台开」· Java 代码 · 共 108 行
JAVA
108 行
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 + =
减小字号Ctrl + -
显示快捷键?