diff --git a/ruoyi-site/ruoyi-h5/doc/370802.json b/ruoyi-site/ruoyi-h5/doc/370802.json
new file mode 100644
index 000000000..68942729f
--- /dev/null
+++ b/ruoyi-site/ruoyi-h5/doc/370802.json
@@ -0,0 +1,18 @@
+{
+ "id": 370802,
+ "group_id": 0,
+ "type": "web_page",
+ "title": "H5翻页愚人节冷知识分享",
+ "content": "",
+ "content_updated_at": 1747223401,
+ "description": "",
+ "preview": {
+ "url": "https://st-gdx.dancf.com/odyssey/uxms/37699959/58626/20200525-140642-4049.jpeg",
+ "url_watermark": "https://gd-filems.dancf.com/saas/xi19e5/0/faded7db-02a0-4a6a-96bf-7287252541fb11458.jpeg",
+ "width": 750,
+ "height": 1468
+ },
+ "status": 1,
+ "created_at": 1585202569,
+ "updated_at": 1747223401
+}
\ No newline at end of file
diff --git a/ruoyi-site/ruoyi-h5/doc/需求.md b/ruoyi-site/ruoyi-h5/doc/需求.md
new file mode 100644
index 000000000..596893108
--- /dev/null
+++ b/ruoyi-site/ruoyi-h5/doc/需求.md
@@ -0,0 +1,2 @@
+## 问ai时的需求
+我有个java应用,spring boot3,然后现在想要实现这个json的增删改查,数据库方面想用mysql和mongo结合,推荐吗?里面的 content 会有很长的文本
\ No newline at end of file
diff --git a/ruoyi-site/ruoyi-h5/pom.xml b/ruoyi-site/ruoyi-h5/pom.xml
index 6f4aa6f0c..a93f1264e 100644
--- a/ruoyi-site/ruoyi-h5/pom.xml
+++ b/ruoyi-site/ruoyi-h5/pom.xml
@@ -84,6 +84,11 @@
dubbo-nacos-spring-boot-starter
+
+
+ org.springframework.boot
+ spring-boot-starter-data-mongodb
+
diff --git a/ruoyi-site/ruoyi-h5/src/main/java/com/luban/api/controller/FontController.java b/ruoyi-site/ruoyi-h5/src/main/java/com/luban/api/controller/FontController.java
new file mode 100644
index 000000000..5caa83b43
--- /dev/null
+++ b/ruoyi-site/ruoyi-h5/src/main/java/com/luban/api/controller/FontController.java
@@ -0,0 +1,43 @@
+package com.luban.api.controller;
+
+import io.swagger.v3.oas.annotations.Operation;
+import io.swagger.v3.oas.annotations.tags.Tag;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.validation.annotation.Validated;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+import java.util.ArrayList;
+import java.util.List;
+
+
+@RestController
+@RequestMapping("font")
+@Tag(name = "字体")
+@Slf4j
+public class FontController {
+
+
+ @Operation(summary = "批量上传字体")
+ @PostMapping("create")
+ public List