文档
测试

查询所有每日新闻列表

GET
http://localhost:3000/api/back/news/getAllNewsInfo

说明 / 示例

<font color=red>**管理员登陆后服务器会生成token保存在服务器,必须管理员登录后才能进行操作**</font> 成功返回: ```json { "code": 200, "msg": "每日新闻查询成功!", "data": { "list": [ { "id": 2, "title": "asd", "content": "124", "createDate": "2021-04-23" }, { "id": 3, "title": "news11", "content": "news11", "createDate": "2021-04-23" }, { "id": 4, "title": "news111", "content": "news111", "createDate": "2021-04-23" } ] }, "total": 3 } ```