From beb95fb5fc166804056abafd70fc01ac27de7621 Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Mon, 26 Jan 2026 09:11:00 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
applications/drone-command/src/views/api.txt | 94 +++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 94 insertions(+), 0 deletions(-)
diff --git a/applications/drone-command/src/views/api.txt b/applications/drone-command/src/views/api.txt
index e69de29..a385ddf 100644
--- a/applications/drone-command/src/views/api.txt
+++ b/applications/drone-command/src/views/api.txt
@@ -0,0 +1,94 @@
+
+
+## 分页
+
+
+**接口地址**:`/blade-log/log/operationLog/page`
+
+
+**请求方式**:`GET`
+
+
+**请求数据类型**:`application/x-www-form-urlencoded`
+
+
+**响应数据类型**:`*/*`
+
+
+**接口描述**:<p>分页</p>
+
+
+
+**请求参数**:
+
+
+**请求参数**:
+
+
+| 参数名称 | 参数说明 | 请求类型 | 是否必须 | 数据类型 | schema |
+| -------- | -------- | ----- | -------- | -------- | ------ |
+|createBy|操作人|query|false|string||
+|current|当前页|query|false|integer(int32)||
+|endTime|结束时间|query|false|string||
+|size|每页的数量|query|false|integer(int32)||
+|startTime|开始时间|query|false|string||
+|title|日志类型(0菜单/1按钮)|query|false|string||
+
+
+**响应状态**:
+
+
+| 状态码 | 说明 | schema |
+| -------- | -------- | ----- |
+|200|OK|R«IPage«OperationLogVO»»|
+|401|Unauthorized||
+|403|Forbidden||
+|404|Not Found||
+
+
+**响应参数**:
+
+
+| 参数名称 | 参数说明 | 类型 | schema |
+| -------- | -------- | ----- |----- |
+|code|状态码|integer(int32)|integer(int32)|
+|data|承载数据|IPage«OperationLogVO»|IPage«OperationLogVO»|
+|  current||integer(int64)||
+|  pages||integer(int64)||
+|  records||array|OperationLogVO|
+|    createBy|操作人|string||
+|    remoteIp|客户端IP|string||
+|    requestUri|请求地址|string||
+|    title|日志标题|string||
+|    type|日志类型(0菜单/1按钮)|string||
+|    userAgent|客户端|string||
+|  size||integer(int64)||
+|  total||integer(int64)||
+|msg|返回消息|string||
+|success|是否成功|boolean||
+
+
+**响应示例**:
+```javascript
+{
+ "code": 0,
+ "data": {
+ "current": 0,
+ "pages": 0,
+ "records": [
+ {
+ "createBy": "",
+ "remoteIp": "",
+ "requestUri": "",
+ "title": "",
+ "type": "",
+ "userAgent": ""
+ }
+ ],
+ "size": 0,
+ "total": 0
+ },
+ "msg": "",
+ "success": true
+}
+```
\ No newline at end of file
--
Gitblit v1.9.3