?? 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;
}
// 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 + -