?? saying.java
字號:
package com.aptech.bean;
public class Saying {
private int sid;
private String stitle;
private String scontent;
private String sdatetime;
private int uid;
private String uname; //留言人的名稱
public Saying() {
super();
}
public Saying(String stitle, String scontent, int uid) {
super();
this.stitle = stitle;
this.scontent = scontent;
this.uid = uid;
}
public Saying(int sid, String stitle, String scontent, String sdatetime,
int uid, String uname) {
super();
this.sid = sid;
this.stitle = stitle;
this.scontent = scontent;
this.sdatetime = sdatetime;
this.uid = uid;
this.uname = uname;
}
public String getScontent() {
return scontent;
}
public void setScontent(String scontent) {
this.scontent = scontent;
}
public String getSdatetime() {
return sdatetime;
}
public void setSdatetime(String sdatetime) {
this.sdatetime = sdatetime;
}
public int getSid() {
return sid;
}
public void setSid(int sid) {
this.sid = sid;
}
public String getStitle() {
return stitle;
}
public void setStitle(String stitle) {
this.stitle = stitle;
}
public int getUid() {
return uid;
}
public void setUid(int uid) {
this.uid = uid;
}
public String getUname() {
return uname;
}
public void setUname(String uname) {
this.uname = uname;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -