BatchCreateOperationWithEntityReq.php 396 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * 入参
  4. * @author auto create
  5. */
  6. class BatchCreateOperationWithEntityReq
  7. {
  8. /**
  9. * 实体条件
  10. **/
  11. public $entity_condition;
  12. /**
  13. * 订单id
  14. **/
  15. public $order_id;
  16. /**
  17. * 工序请求
  18. **/
  19. public $perform_operation_reqs;
  20. /**
  21. * 来源
  22. **/
  23. public $source;
  24. /**
  25. * 租户id
  26. **/
  27. public $tenant_id;
  28. /**
  29. * 用户id
  30. **/
  31. public $userid;
  32. }
  33. ?>