获取景区套餐列表

测试地址:

{url}/dev-api/customer/meal/mealList

生产地址:

{url}/api/customer/meal/mealList

HTTP Method:GET
**

具体请求

header:
请求参数 说明
Authorization access_token 这里传登录获取的access_token

body:

请求参数说明

响应参数

成功响应示例

  1. {
  2. "msg": "操作成功",
  3. "code": 200,
  4. "data": [
  5. {
  6. "searchValue": null,
  7. "createBy": "",
  8. "createTime": "2022-04-16 16:35:37",
  9. "updateBy": "",
  10. "updateTime": "2022-04-22 10:31:35",
  11. "remark": null,
  12. "params": {},
  13. "id": 39,
  14. "name": "单人卡",
  15. "img": "http://81.69.0.194:9000/shuichengtongtest/2022/04/22/f58eff8a-7ed5-43aa-b876-60ae0f8fc67d.png",
  16. "originalPrice": "299",
  17. "currentPrice": "199",
  18. "status": 1,
  19. "remaining": 0,
  20. "effectiveTime": "365",
  21. "isDeleted": null,
  22. "sort": 4
  23. },
  24. {
  25. "searchValue": null,
  26. "createBy": "",
  27. "createTime": "2022-04-16 16:35:56",
  28. "updateBy": "",
  29. "updateTime": "2022-04-18 13:54:11",
  30. "remark": null,
  31. "params": {},
  32. "id": 40,
  33. "name": "家庭卡",
  34. "img": "http://81.69.0.194:9000/shuichengtongtest/2022/04/22/f58eff8a-7ed5-43aa-b876-60ae0f8fc67d.png",
  35. "originalPrice": "899",
  36. "currentPrice": "499",
  37. "status": 1,
  38. "remaining": 0,
  39. "effectiveTime": "365",
  40. "isDeleted": null,
  41. "sort": 2
  42. },
  43. {
  44. "searchValue": null,
  45. "createBy": "",
  46. "createTime": "2022-04-18 10:12:28",
  47. "updateBy": "",
  48. "updateTime": "2022-04-18 13:54:00",
  49. "remark": null,
  50. "params": {},
  51. "id": 41,
  52. "name": "团体卡",
  53. "img": "http://81.69.0.194:9000/shuichengtongtest/2022/04/22/f58eff8a-7ed5-43aa-b876-60ae0f8fc67d.png",
  54. "originalPrice": "1499",
  55. "currentPrice": "1099",
  56. "status": 1,
  57. "remaining": 0,
  58. "effectiveTime": "365",
  59. "isDeleted": null,
  60. "sort": 0
  61. }
  62. ]
  63. }

失败响应示例

响应参数说明

参数名 说明 备注
code 返回码 为200表示成功,非200表示调用失败,其他错误码请见返回码说明
msg 返回码的文本描述内容
data 返回数据
id 唯一ID
name 卡名称
originalPrice 原价
currentPrice 现价
effectiveTime 有限时间(天)
img 一卡通图片
remaining 景区剩余入园次数

注意事项:
暂无