Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smart_gov_platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
smart_gov_platform
Commits
ede4ef81
Commit
ede4ef81
authored
Dec 14, 2022
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加微官网列表接口
parent
aae4dd61
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
90 additions
and
1 deletion
+90
-1
base-manager/doc/api.md
base-manager/doc/api.md
+89
-0
base-manager/src/test/java/com/mortals/httpclient/matter/MatterController.http
.../java/com/mortals/httpclient/matter/MatterController.http
+1
-1
No files found.
base-manager/doc/api.md
View file @
ede4ef81
...
@@ -10507,6 +10507,95 @@ data|object|请求地址
...
@@ -10507,6 +10507,95 @@ data|object|请求地址
```
```
## 微官网事项
### 查询微官网事项列表
**请求URL:**
micro/matter/list
**请求方式:**
POST
**内容类型:**
application/json;charset=utf-8
**简要描述:**
查询微官网事项列表
**请求参数:**
参数名称| 类型 |备注|必填|其它
---|---------|--|---|---
page| Integer |当前页|否|-
size| Integer |每页条数|否|-1代表所有
idList| List |事项IDs|否|-
**请求样例:**
```
{
"idList": [1,2],
"page": 1,
"size": 10
}
```
**响应参数:**
参数名称 | 参数类型 | 备注 |其它
---|---------|-----------------|---
code| Integer | 结果码(-1.失败,1.成功) |-
msg| String | 消息 |-
data| object | 数据对象 |-
 
data| array | 结果集列表 |数组
  
id| Long | 事项id |-
  
operateSite| String | 站点名称 |-
  
deptName| String | 办理部门 |-
  
matterName| String | 事项名称 |-
  
matterNo| String | 事项编号 |-
  
windowToTheSceneNum| Int | 窗口到现场次数 |-
  
onlineToTheSceneNum| Int | 网办到现场次数 |-
  
promiseTimeLimitShow| Int | 承诺办结时限 |- |-
**响应消息样例:**
```
{
"data": {
"data": [
{
"id": 2,
"operateSite": "",
"deptName": "县水利局",
"windowToTheSceneNum": 0,
"onlineToTheSceneNum": 0,
"promiseTimeLimitShow": ""
},
{
"id": 7,
"operateSite": "",
"deptName": "县文广旅局",
"windowToTheSceneNum": 0,
"onlineToTheSceneNum": 0,
"promiseTimeLimitShow": ""
}
],
"pageInfo": {
"beginIndex": 0,
"prePageResult": 10,
"totalResult": 2,
"totalPage": 1,
"currPage": 1,
"displayPageSize": 5,
"hasNextPage": false,
"hasPrePage": false,
"countPage": true
}
},
"code": 1,
"msg": "查询微官网事项列表成功"
}
```
## 字典附录
## 字典附录
### isBusiness
### isBusiness
...
...
base-manager/src/test/java/com/mortals/httpclient/matter/MatterController.http
View file @
ede4ef81
...
@@ -30,7 +30,7 @@ POST {{baseUrl}}/micro/matter/list
...
@@ -30,7 +30,7 @@ POST {{baseUrl}}/micro/matter/list
Content-Type: application/json
Content-Type: application/json
{
{
"idList": [
7
,2],
"idList": [
1
,2],
"page": 1,
"page": 1,
"size": 10
"size": 10
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment