文档
测试

分页获取每日要闻列表

POST
http://localhost:3000/api/back/daily/getDailyInfoByPagination

接口描述

分页获取每日要闻列表

请求参数

参数名
类型
描述
必填
pageSize
number
必填
page
number
必填

响应参数

参数名
类型
描述
必填
code
number
必填
msg
string
必填
data
object
必填
total
number
必填
totalPage
number
必填

说明 / 示例

<font color=red>**管理员登陆后服务器会生成token保存在服务器,必须管理员登录后才能进行分页获取每日要闻操作**</font> 成功返回: ```json { "code": 200, "msg": "每日要闻查询成功!", "data": { "list": [ { "id": 2, "title": "zxczxc", "content": "zxczxc", "createDate": "2021-04-22" } ] }, "total": 1, "totalPage": 1 } ```