📄 mwise.java
字号:
package com.je.ims.hibernate;
import java.util.Date;
/**
* Wise generated by MyEclipse - Hibernate Tools
*/
public class mWise implements java.io.Serializable {
// Fields
private Long wiseId;
private Long year;
private Long fileId;
private String fileDoc;
private String uploadDate;
private Long isDelete;
private String username;
// Constructors
/** default constructor */
public mWise() {
}
/** full constructor */
public mWise(Long year, Long fileId, String fileDoc, String uploadDate, Long isDelete) {
this.year = year;
this.fileId = fileId;
this.fileDoc = fileDoc;
this.uploadDate = uploadDate;
this.isDelete = isDelete;
}
// Property accessors
public Long getWiseId() {
return this.wiseId;
}
public void setWiseId(Long wiseId) {
this.wiseId = wiseId;
}
public Long getYear() {
return this.year;
}
public void setYear(Long year) {
this.year = year;
}
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 getUploadDate() {
return this.uploadDate;
}
public void setUploadDate(String uploadDate) {
this.uploadDate = uploadDate;
}
public Long getIsDelete() {
return this.isDelete;
}
public void setIsDelete(Long isDelete) {
this.isDelete = isDelete;
}
public String getusername() {
return this.username;
}
public void setuser(String username) {
this.username = username;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -