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;
|
|
/**
|
* AI产品表
|
*
|
* @author yourname
|
* @date 2025-07-29
|
*/
|
@Data
|
@TableName("ai_product")
|
public class AiProduct extends AiBaseEntity {
|
/**
|
* 公司ID (UUID)
|
*/
|
private String companyId;
|
|
/**
|
* 编码
|
*/
|
private String code;
|
|
/**
|
* 名称
|
*/
|
private String name;
|
|
/**
|
* 背景图片
|
*/
|
private String backImg;
|
|
/**
|
* 小图标
|
*/
|
private String iconImg;
|
|
/**
|
* 排序
|
*/
|
private Integer sort;
|
|
/**
|
* 状态 0-禁用 1-启用 2-已删除
|
*/
|
private Integer state;
|
|
/**
|
* 是否推荐到首页 1-推荐 0-不推荐
|
*/
|
private Integer hotState;
|
|
/**
|
* AI产品类别ID (UUID)
|
*/
|
private String productCategoryId;
|
|
@TableField(exist = false)
|
private String productCategoryName;
|
|
/**
|
* 场景(可以根据场景生成prompt提示词)
|
*/
|
private String scene;
|
|
/**
|
* 目标
|
*/
|
private String target;
|
|
/**
|
* 描述
|
*/
|
private String description;
|
|
/**
|
* 每次出题数量
|
*/
|
private Integer questionCount;
|
}
|