GetClothesConditionReq.php 400 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * 请求
  4. * @author auto create
  5. */
  6. class GetClothesConditionReq
  7. {
  8. /**
  9. * 实体条件
  10. **/
  11. public $condition;
  12. /**
  13. * 租户
  14. **/
  15. public $order_id;
  16. /**
  17. * 页信息
  18. **/
  19. public $page;
  20. /**
  21. * 尺码
  22. **/
  23. public $size_codes;
  24. /**
  25. * 状态
  26. **/
  27. public $status;
  28. /**
  29. * 租户id
  30. **/
  31. public $tenant_id;
  32. /**
  33. * user_id
  34. **/
  35. public $userid;
  36. }
  37. ?>