?? replytable.java
字號:
package com.ntsky.note;/** * <p>Title: NTsky新聞發布v1.0正式版</p> * <p>Description: 管理員回復表</p> * <p>Copyright: Copyright (c) 2003</p> * <p>Company: NTsky</p> * @authory 姚君林 * @version 1.0 */public class ReplyTable { public int replyId; public int noteId; public String content=null; public String replyTime=null; //回復ID號 public void setReplyId(int replyId){ this.replyId=replyId; } public int getReplyId(){ return replyId; } //回復編號 public void setNoteId(int noteId){ this.noteId=noteId; } public int getNoteId(){ return noteId; } //回復內容 public void setContent(String content){ this.content=content; } public String getContent(){ return content; } //回復時間 public void setReplyTime(String replyTime){ this.replyTime=replyTime; } public String getReplyTime(){ return replyTime; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -