package jp.ac.kcska.questionsystem; /* Code Generator Information. * generator Version 1.0.0 release 2007/10/10 * generated Date Thu Jan 22 10:03:27 JST 2015 */ import java.io.Serializable; /** * Mst_choiceVo. * @author sidare * @version 1.0 * history * Symbol Date Person Note * [1] 2015/01/22 sidare Generated. */ public class Mst_choiceVo implements Serializable{ public static final String TABLE = "MST_CHOICE"; /** * id:int(10) */ private int id; /** * detail:text(65535) */ private String detail; /** * questionid:int(10) */ private int questionid; /** * answerflag:tinyint(3) */ private byte answerflag; /** * Constractor */ public Mst_choiceVo(){} public int getId(){ return this.id; } public void setId(int id){ this.id = id; } public String getDetail(){ return this.detail; } public void setDetail(String detail){ this.detail = detail; } public int getQuestionid(){ return this.questionid; } public void setQuestionid(int questionid){ this.questionid = questionid; } public byte getAnswerflag(){ return this.answerflag; } public void setAnswerflag(byte answerflag){ this.answerflag = answerflag; } public String toString(){ StringBuffer buffer = new StringBuffer(); buffer.append("[Mst_choiceVo:"); buffer.append(" id: "); buffer.append(id); buffer.append(" detail: "); buffer.append(detail); buffer.append(" questionid: "); buffer.append(questionid); buffer.append(" answerflag: "); buffer.append(answerflag); buffer.append("]"); return buffer.toString(); } }