?? msgcountim.java
字號(hào):
package com.yhbbs.message.bean;
import com.yhbbs.message.itface.MsgCount;
/**
* <p>Title:論壇用戶短消息相關(guān)統(tǒng)計(jì)</p>
* <li> 論壇用戶短消息數(shù)量統(tǒng)計(jì),主要是用于首頁(yè)調(diào)用 <br>
* <br><b>WebSite: www.yyhweb.com</b>
* <br><b>CopyRight: yyhweb[由由華網(wǎng)]</b>
* @author stephen
* @version YHBBS-2.0
*/
public class MsgCountIm implements MsgCount {
private int newmsgs = 0;
private int sends = 0;
private int receives = 0;
public int getNewmsgs() {
return newmsgs;
}
public void setNewmsgs(int newmsgs) {
this.newmsgs = newmsgs;
}
public int getReceives() {
return receives;
}
public void setReceives(int receives) {
this.receives = receives;
}
public int getSends() {
return sends;
}
public void setSends(int sends) {
this.sends = sends;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -