54 lines
1.3 KiB
Java
54 lines
1.3 KiB
Java
package com.rj.entity;
|
||
|
||
import com.baomidou.mybatisplus.annotation.TableId;
|
||
import com.baomidou.mybatisplus.annotation.TableName;
|
||
import io.swagger.v3.oas.annotations.media.Schema;
|
||
import lombok.Data;
|
||
import lombok.EqualsAndHashCode;
|
||
|
||
import java.io.Serializable;
|
||
import java.time.LocalDateTime;
|
||
|
||
/**
|
||
* AI 提示词配置(表 ai_prompts)
|
||
*/
|
||
@Data
|
||
@EqualsAndHashCode(callSuper = false)
|
||
@TableName("ai_prompts")
|
||
@Schema(description = "AI提示词配置(ai_prompts)")
|
||
public class AiPrompts implements Serializable {
|
||
|
||
private static final long serialVersionUID = 1L;
|
||
|
||
@Schema(description = "主键,UUID")
|
||
@TableId("id")
|
||
private String id;
|
||
|
||
@Schema(description = "情景编码")
|
||
private String scenarioCode;
|
||
|
||
@Schema(description = "分类编码")
|
||
private String categoryCode;
|
||
|
||
@Schema(description = "分类描述")
|
||
private String categoryDesc;
|
||
|
||
@Schema(description = "字段编码")
|
||
private String fieldCode;
|
||
|
||
@Schema(description = "提示词类型")
|
||
private String promptType;
|
||
|
||
@Schema(description = "提示词")
|
||
private String promptText;
|
||
|
||
@Schema(description = "备注")
|
||
private String remark;
|
||
|
||
@Schema(description = "创建时间")
|
||
private LocalDateTime createTime;
|
||
|
||
@Schema(description = "修改时间")
|
||
private LocalDateTime updateTime;
|
||
}
|