📄 abstractsjobhistory.java
字号:
package com.support.hibernate.table;
import java.util.Date;
/**
* AbstractSJobHistory generated by MyEclipse Persistence Tools
*/
public abstract class AbstractSJobHistory implements java.io.Serializable {
// Fields
private String id;
private String jobId;
private Date createDate;
private String operateType;
private String fromUserId;
private String toUserId;
private String description;
// Constructors
/** default constructor */
public AbstractSJobHistory() {
}
/** minimal constructor */
public AbstractSJobHistory(String jobId, Date createDate,
String operateType, String fromUserId, String toUserId) {
this.jobId = jobId;
this.createDate = createDate;
this.operateType = operateType;
this.fromUserId = fromUserId;
this.toUserId = toUserId;
}
/** full constructor */
public AbstractSJobHistory(String jobId, Date createDate,
String operateType, String fromUserId, String toUserId,
String description) {
this.jobId = jobId;
this.createDate = createDate;
this.operateType = operateType;
this.fromUserId = fromUserId;
this.toUserId = toUserId;
this.description = description;
}
// Property accessors
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public Date getCreateDate() {
return this.createDate;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
public String getOperateType() {
return this.operateType;
}
public void setOperateType(String operateType) {
this.operateType = operateType;
}
public String getFromUserId() {
return this.fromUserId;
}
public void setFromUserId(String fromUserId) {
this.fromUserId = fromUserId;
}
public String getToUserId() {
return this.toUserId;
}
public void setToUserId(String toUserId) {
this.toUserId = toUserId;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -