[关闭]
@apis1990 2016-08-24T03:52:30.000000Z 字数 2066 阅读 513

教练端

获得所有教练的订单列表


1.URL:/service/api/get_coach_orders.php/id/:id/status/:status_id

测试地址:http://36.33.24.119:8081/api/get_coach_orders.php/id/26/status/1

2.请求方式:POST

3.请求参数:

参数 类型 是否必须 描述
id int 教练id
status_id int 1:待完成 2:已完成 3:已取消

4.接口返回结果

  1. {
  2. "code": 200,
  3. "data": [
  4. {
  5. "l_study_order_id": "40",
  6. "s_order_no": "2015092654565555", // 订单号
  7. "dt_order_time": "1443268678", // 订单时间
  8. "appoint_time_id": "40",
  9. "time_config_id": "1,2,3,4,5,6,7",
  10. "l_user_id": "179",
  11. "s_user_name": "", // 用户名
  12. "s_user_phone": "13880217622", // 学员手机号
  13. "l_coach_id": "26",
  14. "s_coach_name": "戴驰",
  15. "s_coach_phone": "18355181375",
  16. "s_address": "",
  17. "s_lisence_name": "",
  18. "s_lesson_name": "",
  19. "dc_money": "910.00",
  20. "dt_appoint_time": "2015-09-26 00:00:00",
  21. "i_start_hour": "0",
  22. "i_end_hour": "0",
  23. "i_service_time": "0",
  24. "i_status": "1",
  25. "s_zhifu_dm": "A4EF2179-D03F-4D6D-86E1-1EBEB0866803",
  26. "dt_zhifu_time": "0000-00-00 00:00:00",
  27. "deal_type": "2", // 交易类型
  28. "s_time_money_detail": "",
  29. "s_order_time": "",
  30. "s_order_money": "",
  31. "s_lisence_type": "",
  32. "cancel_type": "0",
  33. "order_time": "2015/9/26 8.00-9.00,9.00-10.00,10.00-11.00,11.00-12.00,12.00-13.00,13.00-14.00,14.00-15.00", //显示的课程时间
  34. "time_config_arr": [ // 预约的时间
  35. "8.00-9.00",
  36. "9.00-10.00",
  37. "10.00-11.00",
  38. "11.00-12.00",
  39. "12.00-13.00",
  40. "13.00-14.00",
  41. "14.00-15.00"
  42. ],
  43. "s_student_imgurl": "", //学员头像
  44. "is_comment": 2 // 是否已评价 (1:已评价 2:未评价)
  45. },
  46. ...
  47. {
  48. "l_study_order_id": "85",
  49. "s_order_no": "2015101710210051",
  50. "dt_order_time": "1445080831",
  51. "appoint_time_id": "92",
  52. "time_config_id": "7,8",
  53. "l_user_id": "1",
  54. "s_user_name": "chenxi",
  55. "s_user_phone": "18656999023",
  56. "l_coach_id": "26",
  57. "s_coach_name": "戴驰",
  58. "s_coach_phone": "18355181375",
  59. "s_address": "",
  60. "s_lisence_name": "C1,C1",
  61. "s_lesson_name": "科目二,科目二",
  62. "dc_money": "120.00",
  63. "dt_appoint_time": "2015-10-18 00:00:00",
  64. "i_start_hour": "0",
  65. "i_end_hour": "0",
  66. "i_service_time": "2",
  67. "i_status": "1",
  68. "s_zhifu_dm": "SAHADJHDJA23423124",
  69. "dt_zhifu_time": "0000-00-00 00:00:00",
  70. "deal_type": "1",
  71. "s_time_money_detail": "",
  72. "s_order_time": "",
  73. "s_order_money": "",
  74. "s_lisence_type": "",
  75. "cancel_type": "0",
  76. "order_time": "2015/10/18 14.00-15.00,15.00-16.00",
  77. "time_config_arr": [
  78. "14.00-15.00",
  79. "15.00-16.00"
  80. ],
  81. "s_student_imgurl": "../upload/user/20151016/14449981448491.jpg",
  82. "is_comment": 2
  83. }
  84. ]
  85. }
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注