⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 homevo.java

📁 论坛软件系统亦称电子公告板(BBS)系统
💻 JAVA
字号:
package cn.jsprun.foreg.vo.wap;

import java.util.ArrayList;
import java.util.List;

public class HomeVO extends WithFooterAndHead {
	private String bbname = null; 
	private boolean isLogin = false; 
	private boolean allowsearch = false; 
	private int newthreads = 0;
	private List<Forum> forumList = new ArrayList<Forum>(10);
	private boolean existMoreForum = false;
	private int memberCount = 0;
	private int guestCount = 0;
	private String sid = null;
	
	public class Forum{
		private String fid = null;
		private String name = null;
		public String getFid() {
			return fid;
		}
		public void setFid(String fid) {
			this.fid = fid;
		}
		public String getName() {
			return name;
		}
		public void setName(String name) {
			this.name = name;
		}
	}
	
	public Forum getForum(){
		return new Forum();
	}

	public String getBbname() {
		return bbname;
	}

	public void setBbname(String bbname) {
		this.bbname = bbname;
	}

	public boolean getIsLogin() {
		return isLogin;
	}

	public void setIsLogin(boolean isLogin) {
		this.isLogin = isLogin;
	}

	public boolean getAllowsearch() {
		return allowsearch;
	}

	public void setAllowsearch(boolean allowsearch) {
		this.allowsearch = allowsearch;
	}

	public int getNewthreads() {
		return newthreads;
	}

	public void setNewthreads(int newthreads) {
		this.newthreads = newthreads;
	}

	public boolean isExistMoreForum() {
		return existMoreForum;
	}

	public void setExistMoreForum(boolean existMoreForum) {
		this.existMoreForum = existMoreForum;
	}

	public int getMemberCount() {
		return memberCount;
	}

	public void setMemberCount(int memberCount) {
		this.memberCount = memberCount;
	}

	public int getGuestCount() {
		return guestCount;
	}

	public void setGuestCount(int guestCount) {
		this.guestCount = guestCount;
	}

	public List<Forum> getForumList() {
		return forumList;
	}

	public String getSid() {
		return sid;
	}

	public void setSid(String sid) {
		this.sid = sid;
	}
	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -