PollAnswer.java
528 Bytes
package fi.insomnia.bortal.model;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Lob;
import javax.persistence.ManyToOne;
import javax.persistence.OneToMany;
public class PollAnswer extends GenericEventChild implements Serializable {
private static final long serialVersionUID = 1L;
@Lob
@Column(name = "answer_test", nullable = true)
private String answerText;
@ManyToOne
@Column(name = "question_id", nullable = false)
private PossibleAnswer choise;
}