| | |
| | | package cc.mrbird.febs.ai.entity; |
| | | |
| | | import cc.mrbird.febs.common.entity.AiBaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * AI产品题目 |
| | |
| | | private String title; |
| | | |
| | | /** |
| | | * 答案 |
| | | */ |
| | | private String answer; |
| | | |
| | | /** |
| | | * 是否是正确答案 0-否 1-是 |
| | | */ |
| | | private Integer correctAnswer; |
| | | |
| | | /** |
| | | * 父ID,相同表示是同一个题目 |
| | | */ |
| | | private String parentId; |
| | | |
| | | /** |
| | | * 答案解析 |
| | | */ |
| | | private String answerAnalysis; |
| | | |
| | | /** |
| | | * 难度:1-简单,2-中等,3-困难 |
| | | */ |
| | | private Integer difficulty; |
| | |
| | | * 状态 0-禁用 1-启用 2-已删除 |
| | | */ |
| | | private Integer state; |
| | | |
| | | @TableField(exist = false) |
| | | private List<AiProductQuestionItem> aiProductQuestionItems; |
| | | } |