package com.jysoft.questionnaire.entity; import java.io.Serializable; public class GreenQuestionnaireTopIc implements Serializable { /** * */ private static final long serialVersionUID = 7738123373924961552L; /** * 主键 */ private String id; /** * 题目名称 */ private String topIc; /** * 问卷id */ private String questionnaireId; /** * 题目类型(0:简答,1:选择) */ private String topIcType; /** * 题目序号 */ private String number; /** * 选项 */ private String option; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getTopIc() { return topIc; } public void setTopIc(String topIc) { this.topIc = topIc; } public String getQuestionnaireId() { return questionnaireId; } public void setQuestionnaireId(String questionnaireId) { this.questionnaireId = questionnaireId; } public String getTopIcType() { return topIcType; } public void setTopIcType(String topIcType) { this.topIcType = topIcType; } public String getNumber() { return number; } public void setNumber(String number) { this.number = number; } public String getOption() { return option; } public void setOption(String option) { this.option = option; } public static long getSerialversionuid() { return serialVersionUID; } }