📄 article.java
字号:
package com.web.common.bean;
import java.util.Date;
/**
* ArticleManager generated by MyEclipse - Hibernate Tools
*/
public class Article implements java.io.Serializable {
// Fields
private long id;
private String topic;
private String type;
private String author;
private String articleFrom;
private String content;
private long hits;
private Date senddate;
private String pubname;
// Constructors
/** default constructor */
public Article() {
}
/** minimal constructor */
public Article(String topic, String type, String author, String articleFrom, String content, String pubname) {
this.topic = topic;
this.type = type;
this.author = author;
this.articleFrom = articleFrom;
this.content = content;
this.pubname = pubname;
}
/** full constructor */
public Article(String topic, String type, String author, String articleFrom, String content, long hits, Date senddate, String pubname) {
this.topic = topic;
this.type = type;
this.author = author;
this.articleFrom = articleFrom;
this.content = content;
this.hits = hits;
this.senddate = senddate;
this.pubname = pubname;
}
// Property accessors
public long getId() {
return this.id;
}
public void setId(long id) {
this.id = id;
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getAuthor() {
return this.author;
}
public void setAuthor(String author) {
this.author = author;
}
public String getArticleFrom() {
return this.articleFrom;
}
public void setArticleFrom(String articleFrom) {
this.articleFrom = articleFrom;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public long getHits() {
return this.hits;
}
public void setHits(long hits) {
this.hits = hits;
}
public Date getSenddate() {
return this.senddate;
}
public void setSenddate(Date senddate) {
this.senddate = senddate;
}
public String getPubname() {
return this.pubname;
}
public void setPubname(String pubname) {
this.pubname = pubname;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -