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/YHBannerVo.java | 17 +++++++++++++++++
1 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/src/main/java/cc/mrbird/febs/yinhe/res/YHBannerVo.java b/src/main/java/cc/mrbird/febs/yinhe/res/YHBannerVo.java
new file mode 100644
index 0000000..60eba11
--- /dev/null
+++ b/src/main/java/cc/mrbird/febs/yinhe/res/YHBannerVo.java
@@ -0,0 +1,17 @@
+package cc.mrbird.febs.yinhe.res;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+@Data
+@ApiModel(value = "YHBannerVo", description = "参数")
+public class YHBannerVo {
+
+ @ApiModelProperty(value = "名称*", example = "1")
+ private String name;
+ @ApiModelProperty(value = "图片链接*", example = "1")
+ private String imageUrl;
+ @ApiModelProperty(value = "排序*", example = "1")
+ private Integer sort;
+}
--
Gitblit v1.9.1