预案等级列表查询
开发中
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