?? uncommandword.java
字號:
package com.longtime.wap.model;
import java.util.Date;
/**
* 數(shù)據(jù)庫過濾字符表元素描述
*
* @author bulc
* @date Nov 1, 2007
*/
public class UncommandWord implements java.io.Serializable {
private static final long serialVersionUID = 1L;
private long uncommandWordId;
private String word;
private Date createDate;
/**
* 獲取過濾字符編號
*
* @return 過濾字符編號
*/
public long getUncommandWordId() {
return this.uncommandWordId;
}
/**
* 設(shè)置過濾字符編號
*
* @param uncommandWordId
* 過濾字符編號
*/
public void setUncommandWordId(long uncommandWordId) {
this.uncommandWordId = uncommandWordId;
}
/**
* 獲取過濾字符內(nèi)容
*
* @return 過濾字符內(nèi)容
*/
public String getWord() {
return this.word;
}
/**
* 設(shè)置過濾字符內(nèi)容
*
* @param word
* 過濾字符內(nèi)容
*/
public void setWord(String word) {
this.word = word;
}
/**
* 獲取過濾字符創(chuàng)建日期
*
* @return 過濾字符創(chuàng)建日期
*/
public Date getCreateDate() {
return this.createDate;
}
/**
* 設(shè)置過濾字符創(chuàng)建日期
*
* @param createDate
* 過濾字符創(chuàng)建日期
*/
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -