package com.bizofficer.module.questiontf;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown = true)
public class ItemBeanTF {

	private String Description;
	private PresentationBeanTF presentation;
	private String title, ident;	
	private ResprocessingBeanTF resprocessing;
	
	
	public PresentationBeanTF getPresentation() {
		return presentation;
	}
	public void setPresentation(PresentationBeanTF presentation) {
		this.presentation = presentation;
	}
	public String getTitle() {
		return title;
	}
	public void setTitle(String title) {
		this.title = title;
	}
	public String getIdent() {
		return ident;
	}
	public void setIdent(String ident) {
		this.ident = ident;
	}
	public ResprocessingBeanTF getResprocessing() {
		return resprocessing;
	}
	public void setResprocessing(ResprocessingBeanTF resprocessing) {
		this.resprocessing = resprocessing;
	}
	public String getDescription() {
		return Description;
	}
	public void setDescription(String description) {
		Description = description;
	}
	
	
	
	
	
	
	
	

	

	
	
	
}
