OpenJumpInfoRq.php 308 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * 请求对象
  4. * @author auto create
  5. */
  6. class OpenJumpInfoRq
  7. {
  8. /**
  9. * 企业id
  10. **/
  11. public $corpid;
  12. /**
  13. * 第三方行程id
  14. **/
  15. public $itinerary_id;
  16. /**
  17. * 跳转类型:1机票,2火车票,3酒店
  18. **/
  19. public $type;
  20. /**
  21. * 用户id
  22. **/
  23. public $userid;
  24. }
  25. ?>