OpenApiCustomOrderChangeReq.php 297 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * 请求提体
  4. * @author auto create
  5. */
  6. class OpenApiCustomOrderChangeReq
  7. {
  8. /**
  9. * 2C订单id
  10. **/
  11. public $biz_id_customer_order;
  12. /**
  13. * 2C订单状态
  14. **/
  15. public $status;
  16. /**
  17. * 租户id
  18. **/
  19. public $tenant_id;
  20. /**
  21. * 用户id
  22. **/
  23. public $userid;
  24. }
  25. ?>