From a1d7e81859f554f3a53680cc35f0f49bf1f77098 Mon Sep 17 00:00:00 2001
From: wwf <1971391498@qq.com>
Date: 星期四, 14 五月 2026 14:37:02 +0800
Subject: [PATCH] 导入项目

---
 src/api/mp/autoReply/index.ts |   39 +++++++++++++++++++++++++++++++++++++++
 1 files changed, 39 insertions(+), 0 deletions(-)

diff --git a/src/api/mp/autoReply/index.ts b/src/api/mp/autoReply/index.ts
new file mode 100644
index 0000000..5045e6d
--- /dev/null
+++ b/src/api/mp/autoReply/index.ts
@@ -0,0 +1,39 @@
+import request from '@/config/axios'
+
+// 鍒涘缓鍏紬鍙风殑鑷姩鍥炲
+export const createAutoReply = (data) => {
+  return request.post({
+    url: '/mp/auto-reply/create',
+    data: data
+  })
+}
+
+// 鏇存柊鍏紬鍙风殑鑷姩鍥炲
+export const updateAutoReply = (data) => {
+  return request.put({
+    url: '/mp/auto-reply/update',
+    data: data
+  })
+}
+
+// 鍒犻櫎鍏紬鍙风殑鑷姩鍥炲
+export const deleteAutoReply = (id) => {
+  return request.delete({
+    url: '/mp/auto-reply/delete?id=' + id
+  })
+}
+
+// 鑾峰緱鍏紬鍙风殑鑷姩鍥炲
+export const getAutoReply = (id) => {
+  return request.get({
+    url: '/mp/auto-reply/get?id=' + id
+  })
+}
+
+// 鑾峰緱鍏紬鍙风殑鑷姩鍥炲鍒嗛〉
+export const getAutoReplyPage = (query) => {
+  return request.get({
+    url: '/mp/auto-reply/page',
+    params: query
+  })
+}

--
Gitblit v1.8.0