?? info.java
字號:
/*
* Created on 2004-9-17
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package oa.data;
import oa.sys.*;
/**
****************************************************
*類名稱: Info<br>
*類功能: 信息收發(類型)<br>
*創建: 白偉明 2004年9月23日<br>
****************************************************
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class Info {
private int id;
private String title;
private String time;
private int sendter;
private int accepter;
private String content;
private int news;
/**
* 信息收發
*/
public Info() {
super();
id=0;
title="";
time=new Time().getYMDHMS();
sendter=0;
accepter=0;
content="";
news=0;
}
public void setId(int id) {
this.id = id;
}
public int getId() {
return id;
}
public void setTitle(String title) {
this.title = title;
}
public String getTitle() {
return title;
}
public void setTime(String time) {
this.time = time;
}
public String getTime() {
return time;
}
public void setSendter(int sendter) {
this.sendter = sendter;
}
public int getSendter() {
return sendter;
}
public void setAccepter(int accepter) {
this.accepter = accepter;
}
public int getAccepter() {
return accepter;
}
public void setContent(String content) {
this.content = content;
}
public String getContent() {
return content;
}
public void setNews(int news) {
this.news= news;
}
public int getNews() {
return news;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -