📄 filemanager.java
字号:
package com.je.ims.hibernate;
import java.util.Date;
/**
* FileManager generated by MyEclipse - Hibernate Tools
*/
public class FileManager implements java.io.Serializable {
// Fields
private Long fileId;
private String fileDoc;
private String fileCname;
private String fileType;
private String fileSave;
private String appId;
private Long isDelete;
private String userId;
private String userName;
private String userUnit;
private Date uploadDate;
// Constructors
/** default constructor */
public FileManager() {
}
/** full constructor */
public FileManager(String fileDoc, String fileCname, String fileType, String fileSave, String appId, Long isDelete, String userId, String userName, String userUnit, Date uploadDate) {
this.fileDoc = fileDoc;
this.fileCname = fileCname;
this.fileType = fileType;
this.fileSave = fileSave;
this.appId = appId;
this.isDelete = isDelete;
this.userId = userId;
this.userName = userName;
this.userUnit = userUnit;
this.uploadDate = uploadDate;
}
// Property accessors
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 String getFileCname() {
return this.fileCname;
}
public void setFileCname(String fileCname) {
this.fileCname = fileCname;
}
public String getFileType() {
return this.fileType;
}
public void setFileType(String fileType) {
this.fileType = fileType;
}
public String getFileSave() {
return this.fileSave;
}
public void setFileSave(String fileSave) {
this.fileSave = fileSave;
}
public String getAppId() {
return this.appId;
}
public void setAppId(String appId) {
this.appId = appId;
}
public Long getIsDelete() {
return this.isDelete;
}
public void setIsDelete(Long isDelete) {
this.isDelete = isDelete;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getUserUnit() {
return this.userUnit;
}
public void setUserUnit(String userUnit) {
this.userUnit = userUnit;
}
public Date getUploadDate() {
return this.uploadDate;
}
public void setUploadDate(Date uploadDate) {
this.uploadDate = uploadDate;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -