TouMaterials.php 525 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * 返回结果
  4. * @author auto create
  5. */
  6. class TouMaterials
  7. {
  8. /**
  9. * 结束时间,Unix时间戳
  10. **/
  11. public $end_time;
  12. /**
  13. * 物料id
  14. **/
  15. public $material_id;
  16. /**
  17. * 物料集合名称
  18. **/
  19. public $material_name;
  20. /**
  21. * 物料类型,1: 商品;2:权益
  22. **/
  23. public $material_type;
  24. /**
  25. * 开始时间,Unix时间戳
  26. **/
  27. public $start_time;
  28. /**
  29. * 物料主题类型, 1促销活动;2热门主题;3精选榜单;4行业频道等;5其他
  30. **/
  31. public $subject;
  32. }
  33. ?>