?? listitembean.java
字號:
/**
* 作者: 佟勁緯 創建日期: 2006-1-14
*
* QQ: 532443423 Email: TJW_7@163.com
*/
package com.tjw.guestbook.model;
import java.io.*;
/**
*
*/
public class ListItemBean implements Serializable {
private int id;
private String userName = null;
private String email = null;
private String homepage = null;
private String time = null;
private String qq = null;
private String caption = null;
private String content = null;
private String photo = null;
private String admin = null;
private String quote = null;
public void setId(int id) {
this.id = id;
}
public int getId() {
return this.id;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getUserName() {
return this.userName;
}
public void setEmail(String email) {
this.email = email;
}
public String getEmail() {
return this.email;
}
public void setHomepage(String homepage) {
this.homepage = homepage;
}
public String getHomepage() {
return this.homepage;
}
public void setTime(String time) {
this.time = time;
}
public String getTime() {
return this.time;
}
public void setQq(String qq) {
this.qq = qq;
}
public String getQq() {
return this.qq;
}
public void setCaption(String caption) {
this.caption = caption;
}
public String getCaption() {
return this.caption;
}
public void setContent(String content) {
this.content = content;
}
public String getContent() {
return this.content;
}
public void setPhoto(String photo) {
this.photo = photo;
}
public String getPhoto() {
return this.photo;
}
public void setAdmin(String admin) {
this.admin = admin;
}
public String getAdmin() {
return this.admin;
}
public void setQuote(String quote) {
this.quote = quote;
}
public String getQuote() {
return this.quote;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -