📄 bulletin.java
字号:
package com.je.ims.hibernate;
import java.util.Date;
import java.sql.Clob;
/**
* Bulletin generated by MyEclipse - Hibernate Tools
*/
public class Bulletin implements java.io.Serializable {
// Fields
private Long bulletinId;
private Long year;
private String caption;
private Clob content;
private Date uploadDate;
private Date date1;
private Date date2;
private Long isLogin;
private Long isB;
private String userId;
private String userName;
private String userUnit;
private Date lastUpdate;
private Long isDelete;
// Constructors
/** default constructor */
public Bulletin() {
}
/** full constructor */
public Bulletin(Long year, String caption, Clob content, Date uploadDate, Date date1, Date date2, Long isLogin, Long isB, String userId, String userName, String userUnit, Date lastUpdate, Long isDelete) {
this.year = year;
this.caption = caption;
this.content = content;
this.uploadDate = uploadDate;
this.date1 = date1;
this.date2 = date2;
this.isLogin = isLogin;
this.isB = isB;
this.userId = userId;
this.userName = userName;
this.userUnit = userUnit;
this.lastUpdate = lastUpdate;
this.isDelete = isDelete;
}
// Property accessors
public Long getBulletinId() {
return this.bulletinId;
}
public void setBulletinId(Long bulletinId) {
this.bulletinId = bulletinId;
}
public Long getYear() {
return this.year;
}
public void setYear(Long year) {
this.year = year;
}
public String getCaption() {
return this.caption;
}
public void setCaption(String caption) {
this.caption = caption;
}
public Clob getContent() {
return this.content;
}
public void setContent(Clob content) {
this.content = content;
}
public Date getUploadDate() {
return this.uploadDate;
}
public void setUploadDate(Date uploadDate) {
this.uploadDate = uploadDate;
}
public Date getDate1() {
return this.date1;
}
public void setDate1(Date date1) {
this.date1 = date1;
}
public Date getDate2() {
return this.date2;
}
public void setDate2(Date date2) {
this.date2 = date2;
}
public Long getIsLogin() {
return this.isLogin;
}
public void setIsLogin(Long isLogin) {
this.isLogin = isLogin;
}
public Long getIsB() {
return this.isB;
}
public void setIsB(Long isB) {
this.isB = isB;
}
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 getLastUpdate() {
return this.lastUpdate;
}
public void setLastUpdate(Date lastUpdate) {
this.lastUpdate = lastUpdate;
}
public Long getIsDelete() {
return this.isDelete;
}
public void setIsDelete(Long isDelete) {
this.isDelete = isDelete;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -