?? articles.java
字號:
package domain;
import java.io.Serializable;
import java.sql.Date;
public class Articles implements Serializable{
private int articlesid;
private String title;
private int kindid;
private String content;
private Date post_time;
private int hits;
private String photo;
private int address;
public int getArticlesid() {
return articlesid;
}
public void setArticlesid(int articlesid) {
this.articlesid = articlesid;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public int getKindid() {
return kindid;
}
public void setKindid(int kindid) {
this.kindid = kindid;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public Date getPost_time() {
return post_time;
}
public void setPost_time(Date post_time) {
this.post_time = post_time;
}
public int getHits() {
return hits;
}
public void setHits(int hits) {
this.hits = hits;
}
public String getPhoto() {
return photo;
}
public void setPhoto(String photo) {
this.photo = photo;
}
public int getAddress() {
return address;
}
public void setAddress(int address) {
this.address = address;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -