文档
测试

字典类别list展示

GET
http://192.168.1.107:8501/cpcp/sysdicttype/list?page=1&limit=2

接口描述

/cpcp/sysdicttype/list

请求参数

参数名
类型
描述
必填
page
int
当前页数
必填
limit
int
每页展示条数
必填

响应参数

参数名
类型
描述
必填
msg
string
示例:success
必填
code
int
示例:0
必填
page
object
数据字典
必填
totalCount
int
示例:5
必填
pageSize
int
示例:2
必填
totalPage
int
示例:3
必填
currPage
int
示例:1
必填
list
array
数据列表
必填
id
int
示例:1
必填
dictName
string
示例:推送方式
必填
dictType
string
示例:send_type
必填
status
string
示例:0
必填
createBy
int
示例:1
必填
createTime
object
示例:null
必填
updateBy
int
示例:1
必填
updateTime
object
示例:null
必填
remark
string
示例:嘟一下推送方式
必填

说明 / 示例

请求示例 ```json http://192.168.1.107:8501/cpcp/sysdicttype/list?page=1&limit=2 ``` 返回示例 ```json { "msg": "success", "code": 0, "page": { "totalCount": 5, "pageSize": 2, "totalPage": 3, "currPage": 1, "list": [ { "id": 1, "dictName": "推送方式", "dictType": "send_type", "status": "0", "createBy": 1, "createTime": null, "updateBy": 1, "updateTime": null, "remark": "嘟一下推送方式" }, { "id": 2, "dictName": "推送对象", "dictType": "send_group", "status": "0", "createBy": 1, "createTime": null, "updateBy": 1, "updateTime": null, "remark": "嘟一下推送对象" } ] } } ```