From 463d97a5e770dce75c91f9a1bc9ee75942e847c2 Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Mon, 16 Mar 2026 12:04:39 +0800
Subject: [PATCH] feat(yinhe): 添加智能体详情查看功能

---
 src/main/java/cc/mrbird/febs/yinhe/res/YHSysAgentInitVo.java |   26 ++++++++++++++++++++++++++
 1 files changed, 26 insertions(+), 0 deletions(-)

diff --git a/src/main/java/cc/mrbird/febs/yinhe/res/YHSysAgentInitVo.java b/src/main/java/cc/mrbird/febs/yinhe/res/YHSysAgentInitVo.java
new file mode 100644
index 0000000..6d60cbc
--- /dev/null
+++ b/src/main/java/cc/mrbird/febs/yinhe/res/YHSysAgentInitVo.java
@@ -0,0 +1,26 @@
+package cc.mrbird.febs.yinhe.res;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.util.List;
+
+@Data
+@ApiModel(value = "YHSysAgentInitVo", description = "详情响应")
+public class YHSysAgentInitVo {
+
+    @ApiModelProperty(value = "智能体ID*", example = "1")
+    private String id;
+    @ApiModelProperty(value = "名称*", example = "1")
+    private String name;
+    @ApiModelProperty(value = "描述*", example = "1")
+    private String description;
+    @ApiModelProperty(value = "小图标*", example = "1")
+    private String iconImg;
+    @ApiModelProperty(value = "开场白*", example = "1")
+    private String introduct;
+
+    @ApiModelProperty(value = "开场白预设问题", example = "1")
+    private List<String> items;
+}

--
Gitblit v1.9.1