From 6c340588edca370436c38f0b146e0edadcd32ff9 Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Wed, 18 Mar 2026 16:22:15 +0800
Subject: [PATCH] fix(yinhe): 修复AI服务响应状态和排序问题

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

diff --git a/src/main/java/cc/mrbird/febs/yinhe/res/YHLogoVo.java b/src/main/java/cc/mrbird/febs/yinhe/res/YHLogoVo.java
new file mode 100644
index 0000000..8a5450a
--- /dev/null
+++ b/src/main/java/cc/mrbird/febs/yinhe/res/YHLogoVo.java
@@ -0,0 +1,16 @@
+package cc.mrbird.febs.yinhe.res;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+@Data
+@ApiModel(value = "YHLogoVo", description = "参数")
+public class YHLogoVo {
+    @ApiModelProperty(value = "名称*", example = "1")
+    private String name;
+    @ApiModelProperty(value = "图片链接*", example = "1")
+    private String imageUrl;
+    @ApiModelProperty(value = "欢迎语*", example = "1")
+    private String desription;
+}

--
Gitblit v1.9.1