hz-zhhq-app-service/greenH5modul/.svn/pristine/8b/8bf02b7829f2e611c6d36cc70d1...

89 lines
1.3 KiB
Plaintext
Raw Normal View History

2025-01-21 13:12:35 +08:00
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;
}
}