* ����ָ����վ��ͳ����Ϣ,���siteֵС��0��ȡ������վ
* @param site
* @return
*/
public static DlogStatInfo getDlogStatInfo(int site){
DlogStatInfo count = new DlogStatInfo();
//============== �ռ���
count.setArticle(DiaryDAO.getDiaryCount(site));
//============== �ռ�������
count.setArticleReply(DiaryDAO.getDiaryReplyCount(site));
//============== ��Ƭ��
count.setPhoto(PhotoDAO.getPhotoCount(site));
//============== ��Ƭ������
count.setPhotoReply(PhotoDAO.getPhotoReplyCount(site));
//============== ��̳������
count.setTopic(BBSTopicDAO.getTopicCount(site));
//============== ��̳������
count.setTopicReply(BBSReplyDAO.getReplyCount(site));
//============== ע���û���
count.setUser(UserDAO.getUserCount(site));
//============== ע����վ��
count.setSite(SiteDAO.getSiteCount());
return count;
}