?? topicdto.java
字號:
package com.ibm.dto;
import java.sql.Timestamp;
public class TopicDTO {
private int topicid;
private String title;
private String content;
private Timestamp publishtime;
private Timestamp modifytime;
private int uid;
private int boardid;
public int getTopicid() {
return topicid;
}
public void setTopicid(int topicid) {
this.topicid = topicid;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public Timestamp getPublishtime() {
return publishtime;
}
public void setPublishtime(Timestamp publishtime) {
this.publishtime = publishtime;
}
public Timestamp getModifytime() {
return modifytime;
}
public void setModifytime(Timestamp modifytime) {
this.modifytime = modifytime;
}
public int getUid() {
return uid;
}
public void setUid(int uid) {
this.uid = uid;
}
public int getBoardid() {
return boardid;
}
public void setBoardid(int boardid) {
this.boardid = boardid;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -