ProductImg.php 561 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * 产品图片
  4. * @author auto create
  5. */
  6. class ProductImg
  7. {
  8. /**
  9. * 添加时间.格式:yyyy-mm-dd hh:mm:ss
  10. **/
  11. public $created;
  12. /**
  13. * 产品图片ID
  14. **/
  15. public $id;
  16. /**
  17. * 修改时间.格式:yyyy-mm-dd hh:mm:ss
  18. **/
  19. public $modified;
  20. /**
  21. * 图片序号。产品里的图片展示顺序,数据越小越靠前。要求是正整数。
  22. **/
  23. public $position;
  24. /**
  25. * 图片所属产品的ID
  26. **/
  27. public $product_id;
  28. /**
  29. * 图片地址.(绝对地址,格式:http://host/image_path)
  30. **/
  31. public $url;
  32. }
  33. ?>