package com.bizofficer.apiweb.treeview;

import java.util.List;

import com.bizofficer.api.beans.TopicBean;

public class TreeviewPageBean {
	
	
	private Integer topicId, questionCount;	
	private String topicName;
	private List<TopicBean> children;
	
	
	public Integer getTopicId() {
		return topicId;
	}
	public void setTopicId(Integer topicId) {
		this.topicId = topicId;
	}
	public Integer getQuestionCount() {
		return questionCount;
	}
	public void setQuestionCount(Integer questionCount) {
		this.questionCount = questionCount;
	}
	public String getTopicName() {
		return topicName;
	}
	public void setTopicName(String topicName) {
		this.topicName = topicName;
	}
	public List<TopicBean> getChildren() {
		return children;
	}
	public void setChildren(List<TopicBean> children) {
		this.children = children;
	}
	
	
	
	
	
	
	

	

	

	
	
	
}
