OpenApiSalesOrderCustomInfoQueryReq.php 579 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. /**
  3. * 请求体
  4. * @author auto create
  5. */
  6. class OpenApiSalesOrderCustomInfoQueryReq
  7. {
  8. /**
  9. * 同步的2C订单批次id
  10. **/
  11. public $batch_id;
  12. /**
  13. * 页码
  14. **/
  15. public $page;
  16. /**
  17. * 每页大小
  18. **/
  19. public $page_size;
  20. /**
  21. * 计划交期-查询时间开始
  22. **/
  23. public $planned_delivery_time_begin;
  24. /**
  25. * 计划交期-查询时间结束
  26. **/
  27. public $planned_delivery_time_end;
  28. /**
  29. * 生产订单id
  30. **/
  31. public $product_order_id;
  32. /**
  33. * 租户id
  34. **/
  35. public $tenant_id;
  36. /**
  37. * 用户id
  38. **/
  39. public $userid;
  40. }
  41. ?>