📄 newspress.java
字号:
package com.emis.model.newspress.hibernate;
/**
* Newspress generated by MyEclipse - Hibernate Tools
*/
public class Newspress implements java.io.Serializable {
// Fields
private Integer id;
private Newstype newstype;
private String title;
private String content;
private String author;
private String presstime;
private String remarks;
// Constructors
/** default constructor */
public Newspress() {
}
/** full constructor */
public Newspress(Integer id, Newstype newstype, String title, String content, String author, String presstime, String remarks) {
this.id = id;
this.newstype = newstype;
this.title = title;
this.content = content;
this.author = author;
this.presstime = presstime;
this.remarks = remarks;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Newstype getNewstype() {
return this.newstype;
}
public void setNewstype(Newstype newstype) {
this.newstype = newstype;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getAuthor() {
return this.author;
}
public void setAuthor(String author) {
this.author = author;
}
public String getPresstime() {
return this.presstime;
}
public void setPresstime(String presstime) {
this.presstime = presstime;
}
public String getRemarks() {
return this.remarks;
}
public void setRemarks(String remarks) {
this.remarks = remarks;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -