消息列表
#### 请求URL:
-/msc/message/lists
#### 请求方式:
- POST
#### 请求头:
|参数名|是否必须|类型|默认值|说明|
|:------- |:---|:----- |:---|----- |
|Content-Type |是 |string|| application/json|
#### 请求body示例:
```
{
}
```
#### 返回示例:
```
{
"code": 200,
"result": {
"content": [
{
"id": 1,
"title": "消息标题",//消息标题
"imageSrc": "图片地址", //图片地址
"sub_content": "",//小短文内容
"skipPath": "1", //跳转地址
"type": 1,//1系统信息
"createTime": "2021-09-12 00:00:12"
}
],
"total": 1
},
"message": ""
}
```