指挥调度
  1. 预案统计
指挥调度
  • 预案启动
    • 获取已经转工单的Code
      GET
    • 获取发送状态
      GET
  • 资源调度
    • 队伍调度 - 根据队伍需求匹配调度方案
      POST
    • 队伍调度 - 分页列表
      GET
    • 评估总结
      POST
    • 应急物资调度 - 根据资源需求匹配调度方案
      POST
    • 查询应急物资列表
      GET
    • 一键发送
      POST
  • 预案统计
    • 预案等级列表查询
      GET
    • 预案编制部门列表
      GET
    • 行业领域统计
      GET
    • 预案类别统计
      GET
    • 预案等级统计
      GET
    • 修改预案排序
      POST
  • 值班日志
    • 添加值班日志
      POST
  • 部门点名
    • 获取部门会议终端信息列表
      GET
    • 部门点名记录
      POST
    • 部门点名
      POST
  1. 预案统计

预案等级列表查询

开发中
GET
http://localhost:8580/plan/plan/basicInfo/planLevelList

请求参数

Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token
示例:
Authorization: Bearer ********************
Body 参数multipart/form-data
pageNum
string 
可选
示例值:
1
pageSize
string 
可选
示例值:
10
name
string 
预案名称
可选
示例值:
完整
industryInfo
string 
行业领域
可选
示例值:
1
eventType
string 
预案类型
可选
示例值:
3
responseLevelCode
string 
响应等级
可选
示例值:
4
deptId
string 
发布单位
可选
示例值:
0

示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://localhost:8580/plan/plan/basicInfo/planLevelList' \
--form 'pageNum="1"' \
--form 'pageSize="10"' \
--form 'name="完整"' \
--form 'industryInfo="1"' \
--form 'eventType="3"' \
--form 'responseLevelCode="4"' \
--form 'deptId="0"'

返回响应

🟢200成功
application/json
Body
total
integer 
必需
rows
array [object {29}] 
必需
planId
integer 
必需
name
string 
必需
remark
string 
必需
generalMethod
null 
必需
orgChartUrl
null 
必需
processChartUrl
null 
必需
industryInfo
integer 
必需
industryInfoStr
string 
必需
eventType
integer 
必需
eventTypeStr
string 
必需
reviewStatus
null 
必需
publishStatus
null 
必需
knowledgeIds
null 
必需
executeStatus
null 
必需
deptId
string 
必需
documentUrl
null 
必需
previewUrl
null 
必需
isApproval
null 
必需
createTime
null 
必需
createUser
null 
必需
updateUser
null 
必需
updateTime
null 
必需
isPublicTemplate
null 
必需
isDeleted
null 
必需
publishTime
string 
必需
order
null 
必需
planLevelId
integer 
必需
responseLevelCode
integer 
必需
paramGroupIdList
null 
必需
code
integer 
必需
msg
string 
必需
示例
{
    "total": 1,
    "rows": [
        {
            "planId": 79,
            "name": "完整预案",
            "remark": "111111",
            "generalMethod": null,
            "orgChartUrl": null,
            "processChartUrl": null,
            "industryInfo": 1,
            "industryInfoStr": "自然灾害",
            "eventType": 3,
            "eventTypeStr": "地质灾害",
            "reviewStatus": null,
            "publishStatus": null,
            "knowledgeIds": null,
            "executeStatus": null,
            "deptId": "0",
            "documentUrl": null,
            "previewUrl": null,
            "isApproval": null,
            "createTime": null,
            "createUser": null,
            "updateUser": null,
            "updateTime": null,
            "isPublicTemplate": null,
            "isDeleted": null,
            "publishTime": "2025-06-05 12:48:44",
            "order": null,
            "planLevelId": 163,
            "responseLevelCode": 4,
            "paramGroupIdList": null
        }
    ],
    "code": 200,
    "msg": "查询成功"
}
修改于 2025-06-05 06:48:36
上一页
一键发送
下一页
预案编制部门列表
Built with