?? commentbean.java
字號:
package bean;
public class commentBean {
private String ID; //評論編號
private String comment; //評論內容
private String newID; //新聞編號
private String stars; //評論總體評價
private String creatTime; //評論添加時間
private String name; //評論者稱謂
public String getID() {
return ID;
}
public void setID(String ID) {
this.ID = ID;
}
public void setComment(String comment) {
this.comment = comment;
}
public void setNewID(String newID) {
this.newID = newID;
}
public void setStars(String stars) {
this.stars = stars;
}
public void setCreatTime(String creatTime) {
this.creatTime = creatTime;
}
public void setName(String name) {
this.name = name;
}
public String getComment() {
return comment;
}
public String getNewID() {
return newID;
}
public String getStars() {
return stars;
}
public String getCreatTime() {
return creatTime;
}
public String getName() {
return name;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -