GetUnPerformedClothesByOperationReq.php 468 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. /**
  3. * 入参
  4. * @author auto create
  5. */
  6. class GetUnPerformedClothesByOperationReq
  7. {
  8. /**
  9. * 业务类型
  10. **/
  11. public $biz_types;
  12. /**
  13. * 工序id
  14. **/
  15. public $operation_uids;
  16. /**
  17. * 订单id
  18. **/
  19. public $order_id;
  20. /**
  21. * 分页
  22. **/
  23. public $page;
  24. /**
  25. * 尺码信息
  26. **/
  27. public $size_code;
  28. /**
  29. * 状态
  30. **/
  31. public $status;
  32. /**
  33. * 租户id
  34. **/
  35. public $tenant_id;
  36. /**
  37. * userId
  38. **/
  39. public $userid;
  40. }
  41. ?>