简要描述:
- 获取团导游通知信息
请求URL:
- /api/notice/notice
请求参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
lvTuTeamId | 是 | int32 | 团号Id |
pageSize | 是 | int32 | 页宽 |
pageIndex | 是 | int32 | 页码 |
入参示例:
https://localhost:6001/api/team/notice?lvTuTeamId=1&pageSize=10&pageIndex=1
返回示例:
正确时返回:
{
"code": 200,
"success": true,
"message": null,
"result": {
"pageSize": 10,
"pageIndex": 1,
"totalCount": 1,
"data": [
{
"title": "hello word",
"templateId": 2,
"createOn": "2019-08-06T15:10:47.973",
"publisher": null,
"publisherRole": 1,
"publisherTel": "13902874408",
"guideCanRemove": false,
"id": 1
}
],
"pageCount": 1
}
}
错误时返回:
返回参数说明:
Data数据说明
参数名 | 类型 | 说明 |
---|---|---|
title | int32 | 消息内容 |
templateId | int32 | 模板编号 |
createOn | DateTime | 发送时间 |
publisher | string | 发送人 |
publisherRole | int | 发送人角色 1导游 2Op |
publisherTel | string | 发布人电话 |
guideCanRemove | bool | true导游可撤回,false导游不可撤回 |
id | int32 | Id |
备注:
-