简要描述:

  • 导游自建团

请求URL:

  • /api/team/createteam

请求参数:

参数名 是否必须 类型(长度) 说明
teamNo string(50) 团号
teamName string(80) 团名
openTime datetime 出团时间
days int32 行程天数
quantity int32 本团计划人数
journey string(2000) 简要行程
attention string(2000) 注意事项

入参示例:

  1. {
  2. "teamNo": "这个暂时不用传,传了也没用,会自动生成",
  3. "teamName": "导游自建团001",
  4. "openTime": "2019-09-26T08:28:56.483Z",
  5. "days": 2,
  6. "quantity": 30,
  7. "journey": "这是行程,可为空的",
  8. "attention": "这是注意事项,也是可为空的"
  9. }

返回示例:

正确时返回:

  1. {
  2. "code": 200,
  3. "success": true,
  4. "message": null,
  5. "result": {
  6. "teamNo": "ZD1909067754",
  7. "teamName": "导游自建团001",
  8. "openTime": "2019-09-26T08:28:56.483Z",
  9. "days": 2,
  10. "quantity": 30,
  11. "journey": "这是行程,可为空的",
  12. "attention": "这是注意事项,也是可为空的",
  13. "travelId": null,
  14. "groupSetId": null,
  15. "eleOpinionId": null,
  16. "qrCode": null,
  17. "guides": null,
  18. "travelLogo": null,
  19. "lastNotice": null,
  20. "noticeQty": 0,
  21. "elecOpinionUrl": null,
  22. "createGuide": null,
  23. "teamFiles": null,
  24. "id": 28
  25. }
  26. }

错误时返回:

返回参数说明:

Data数据说明

参数名 类型 说明
Id int 团Id

备注:

-