|
@@ -28,6 +28,9 @@ public class ChatAnswerEntity extends BaseEntry {
|
|
|
@Column(name = "next_question_no",columnDefinition = "varchar(50) not null comment '下一个问题编号'")
|
|
|
private String nextQuestionNo;
|
|
|
|
|
|
+ @Column(name = "question_type",columnDefinition = "varchar(2) not null comment '题目类型:0 选择题 1填空题 2跳转路由'")
|
|
|
+ private String questionType;
|
|
|
+
|
|
|
@Column(name = "answer",columnDefinition = "varchar(200) not null comment '答案信息'")
|
|
|
private String answer;
|
|
|
|