BatchClothesPerformBaseReq.php 333 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * 入参
  4. * @author auto create
  5. */
  6. class BatchClothesPerformBaseReq
  7. {
  8. /**
  9. * 实体列表
  10. **/
  11. public $entity_ids;
  12. /**
  13. * 扩展属性
  14. **/
  15. public $ext_properties;
  16. /**
  17. * 订单ID
  18. **/
  19. public $order_id;
  20. /**
  21. * 租户id
  22. **/
  23. public $tenant_id;
  24. /**
  25. * 用户id
  26. **/
  27. public $userid;
  28. }
  29. ?>