简要描述:

  • 获取团导游通知信息

请求URL:

  • /api/notice/notice

请求参数:

参数名 是否必须 类型 说明
lvTuTeamId int32 团号Id
pageSize int32 页宽
pageIndex int32 页码

入参示例:

  1. https://localhost:6001/api/team/notice?lvTuTeamId=1&pageSize=10&pageIndex=1

返回示例:

正确时返回:

  1. {
  2. "code": 200,
  3. "success": true,
  4. "message": null,
  5. "result": {
  6. "pageSize": 10,
  7. "pageIndex": 1,
  8. "totalCount": 1,
  9. "data": [
  10. {
  11. "title": "hello word",
  12. "templateId": 2,
  13. "createOn": "2019-08-06T15:10:47.973",
  14. "publisher": null,
  15. "publisherRole": 1,
  16. "publisherTel": "13902874408",
  17. "guideCanRemove": false,
  18. "id": 1
  19. }
  20. ],
  21. "pageCount": 1
  22. }
  23. }

错误时返回:

返回参数说明:

Data数据说明

参数名 类型 说明
title int32 消息内容
templateId int32 模板编号
createOn DateTime 发送时间
publisher string 发送人
publisherRole int 发送人角色 1导游 2Op
publisherTel string 发布人电话
guideCanRemove bool true导游可撤回,false导游不可撤回
id int32 Id

备注:

-