articleresponse.java
来自「j2ee项目应用 使用struts hibernate构建的轻量级j2ee项目」· Java 代码 · 共 90 行
JAVA
90 行
package com.emis.model.bbs.hibernate;
import com.emis.model.hr.hibernate.Employee;
/**
* Articleresponse generated by MyEclipse - Hibernate Tools
*/
public class Articleresponse implements java.io.Serializable {
// Fields
private Integer id;
private Article article;
private Employee employee;
private String content;
private String presstime;
// Constructors
/** default constructor */
public Articleresponse() {
}
/** full constructor */
public Articleresponse(Integer id, Article article, Employee employee, String content, String presstime) {
this.id = id;
this.article = article;
this.employee = employee;
this.content = content;
this.presstime = presstime;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Article getArticle() {
return this.article;
}
public void setArticle(Article article) {
this.article = article;
}
public Employee getEmployee() {
return this.employee;
}
public void setEmployee(Employee employee) {
this.employee = employee;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getPresstime() {
return this.presstime;
}
public void setPresstime(String presstime) {
this.presstime = presstime;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?