package com.bizofficer.hibernate.entity;

import javax.persistence.Cacheable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;


@Entity
@Table(name = "parent_topic_hierarchy")
@Cacheable
public class ParentTopicHierarchy {

	@Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
	@Column(name = "topic_id")
	private String topicId;

	@Column(name = "topic_title")	
	private String topicTitle;
	
	@Column(name = "path")	
	private String path;
	
	

	public String getTopicId() {
		return topicId;
	}

	public void setTopicId(String topicId) {
		this.topicId = topicId;
	}

	public String getTopicTitle() {
		return topicTitle;
	}

	public void setTopicTitle(String topicTitle) {
		this.topicTitle = topicTitle;
	}

	public String getPath() {
		return path;
	}

	public void setPath(String path) {
		this.path = path;
	}

	
	
	

	



	


	
	
	
	

	
	
}
