From 89380e6260a75d1d3b94de687ebcc2f50d50659d Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Tue, 03 Feb 2026 15:44:33 +0800
Subject: [PATCH] feat:环境变量配置调整
---
applications/drone-command/src/views/api.txt | 78 +++++++++++++++++++--------------------
1 files changed, 38 insertions(+), 40 deletions(-)
diff --git a/applications/drone-command/src/views/api.txt b/applications/drone-command/src/views/api.txt
index a385ddf..7626b6d 100644
--- a/applications/drone-command/src/views/api.txt
+++ b/applications/drone-command/src/views/api.txt
@@ -1,9 +1,9 @@
-## 分页
+## 列表
-**接口地址**:`/blade-log/log/operationLog/page`
+**接口地址**:`/area/fwPoliceStation/list`
**请求方式**:`GET`
@@ -15,7 +15,7 @@
**响应数据类型**:`*/*`
-**接口描述**:<p>分页</p>
+**接口描述**:<p>获取全部派出所</p>
@@ -25,14 +25,7 @@
**请求参数**:
-| 参数名称 | 参数说明 | 请求类型 | 是否必须 | 数据类型 | 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||
+暂无
**响应状态**:
@@ -40,7 +33,7 @@
| 状态码 | 说明 | schema |
| -------- | -------- | ----- |
-|200|OK|R«IPage«OperationLogVO»»|
+|200|OK|R«List«FwPoliceStationVO»»|
|401|Unauthorized||
|403|Forbidden||
|404|Not Found||
@@ -52,18 +45,21 @@
| 参数名称 | 参数说明 | 类型 | 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)||
+|data|承载数据|array|FwPoliceStationVO|
+|  address|派出所地址|string||
+|  areaCode|区域编码|string||
+|  contactPerson|联系人|string||
+|  contactPhone|联系方式|string||
+|  createDept|创建部门|integer(int64)||
+|  createTime|创建时间|string(date-time)||
+|  createUser|创建人|integer(int64)||
+|  id|主键id|integer(int64)||
+|  latitude|纬度|number(double)||
+|  longitude|经度|number(double)||
+|  stationName|派出所名称|string||
+|  status|状态(0正常 1停用)|integer(int32)||
+|  updateTime|更新时间|string(date-time)||
+|  updateUser|更新人|integer(int64)||
|msg|返回消息|string||
|success|是否成功|boolean||
@@ -72,22 +68,24 @@
```javascript
{
"code": 0,
- "data": {
- "current": 0,
- "pages": 0,
- "records": [
- {
- "createBy": "",
- "remoteIp": "",
- "requestUri": "",
- "title": "",
- "type": "",
- "userAgent": ""
- }
- ],
- "size": 0,
- "total": 0
- },
+ "data": [
+ {
+ "address": "",
+ "areaCode": "",
+ "contactPerson": "",
+ "contactPhone": "",
+ "createDept": 0,
+ "createTime": "",
+ "createUser": 0,
+ "id": 0,
+ "latitude": 0,
+ "longitude": 0,
+ "stationName": "",
+ "status": 0,
+ "updateTime": "",
+ "updateUser": 0
+ }
+ ],
"msg": "",
"success": true
}
--
Gitblit v1.9.3