ClothesInfoReq.php 439 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * 衣服详情
  4. * @author auto create
  5. */
  6. class ClothesInfoReq
  7. {
  8. /**
  9. * 颜色code
  10. **/
  11. public $color_code;
  12. /**
  13. * 颜色名
  14. **/
  15. public $color_name;
  16. /**
  17. * 数量
  18. **/
  19. public $count;
  20. /**
  21. * 衣服完成时间
  22. **/
  23. public $finish_time;
  24. /**
  25. * 尺码code
  26. **/
  27. public $size_code;
  28. /**
  29. * 尺码名称
  30. **/
  31. public $size_name;
  32. /**
  33. * 衣服开始时间
  34. **/
  35. public $start_time;
  36. }
  37. ?>