?? sampling.java
字號(hào):
package com.je.ims.hibernate;
import java.util.Date;
/**
* Sampling generated by MyEclipse - Hibernate Tools
*/
public class Sampling implements java.io.Serializable {
// Fields
private Long samplingId;
private Long fileId;
private String fileDoc;
private Long isDelete;
private Date uploadDate;
// Constructors
/** default constructor */
public Sampling() {
}
/** full constructor */
public Sampling(Long fileId, String fileDoc, Long isDelete, Date uploadDate) {
this.fileId = fileId;
this.fileDoc = fileDoc;
this.isDelete = isDelete;
this.uploadDate = uploadDate;
}
// Property accessors
public Long getSamplingId() {
return this.samplingId;
}
public void setSamplingId(Long samplingId) {
this.samplingId = samplingId;
}
public Long getFileId() {
return this.fileId;
}
public void setFileId(Long fileId) {
this.fileId = fileId;
}
public String getFileDoc() {
return this.fileDoc;
}
public void setFileDoc(String fileDoc) {
this.fileDoc = fileDoc;
}
public Long getIsDelete() {
return this.isDelete;
}
public void setIsDelete(Long isDelete) {
this.isDelete = isDelete;
}
public Date getUploadDate() {
return this.uploadDate;
}
public void setUploadDate(Date uploadDate) {
this.uploadDate = uploadDate;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -