package cc.mrbird.febs.ai.entity;
|
|
import cc.mrbird.febs.common.entity.AiBaseEntity;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
/**
|
* AI产品题目
|
*
|
* @author yourname
|
* @date 2025-07-29
|
*/
|
@Data
|
@TableName("ai_product_question")
|
public class AiProductQuestion extends AiBaseEntity {
|
|
/**
|
* 公司ID (UUID)
|
*/
|
private String companyId;
|
|
/**
|
* AI产品类别ID (UUID)
|
*/
|
private String productCategoryId;
|
|
/**
|
* 题目
|
*/
|
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;
|
}
|