package com.infinite.focus.server.tests;

import java.util.Date;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;

import org.hibernate.annotations.CreationTimestamp;
import org.hibernate.annotations.GenericGenerator;


/**
 * 
 * @author Saboor
 * 
 *
 */

@Entity
public class SocioEmotionalTestQuestionOption {
	
	//PK
 	@Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    public long socio_emotional_test_question_option_id;
 	
 	public int weight, reverse_weight;
 	 	 	 	
	public String text;
			
	public SocioEmotionalTestQuestionOption() {
		super();
	}

	public long getSocio_emotional_test_question_option_id() {
		return socio_emotional_test_question_option_id;
	}

	public void setSocio_emotional_test_question_option_id(long socio_emotional_test_question_option_id) {
		this.socio_emotional_test_question_option_id = socio_emotional_test_question_option_id;
	}

	public int getWeight() {
		return weight;
	}

	public void setWeight(int weight) {
		this.weight = weight;
	}

	public int getReverse_weight() {
		return reverse_weight;
	}

	public void setReverse_weight(int reverse_weight) {
		this.reverse_weight = reverse_weight;
	}

	public String getText() {
		return text;
	}

	public void setText(String text) {
		this.text = text;
	}
	
	

	
}
