Commit 7ddb68ae by Juho Juopperi

PollAnswer

1 parent 1c367073
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;
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!