OpenItineraryInfo.php 712 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. /**
  3. * 行程列表
  4. * @author auto create
  5. */
  6. class OpenItineraryInfo
  7. {
  8. /**
  9. * 到达城市
  10. **/
  11. public $arr_city;
  12. /**
  13. * 到达时间
  14. **/
  15. public $arr_date;
  16. /**
  17. * 成本中心
  18. **/
  19. public $cost_center_name;
  20. /**
  21. * 出发城市
  22. **/
  23. public $dep_city;
  24. /**
  25. * 出发时间
  26. **/
  27. public $dep_date;
  28. /**
  29. * 发票抬头
  30. **/
  31. public $invoice_name;
  32. /**
  33. * 行程id
  34. **/
  35. public $itinerary_id;
  36. /**
  37. * 项目编号
  38. **/
  39. public $project_code;
  40. /**
  41. * 项目名称
  42. **/
  43. public $project_title;
  44. /**
  45. * 交通方式:0飞机 1火车 2汽车 3其他
  46. **/
  47. public $traffic_type;
  48. /**
  49. * 行程方式:0单程 1往返
  50. **/
  51. public $trip_way;
  52. }
  53. ?>