2024-09-29 15:43:18 +08:00

35 lines
457 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* 属性图片结构
* @author auto create
*/
class PropImg
{
/**
* 图片创建时间 时间格式yyyy-MM-dd HH:mm:ss
**/
public $created;
/**
* 属性图片的id和商品相对应
**/
public $id;
/**
* 图片放在第几张(多图时可设置)
**/
public $position;
/**
* 图片所对应的属性组合的字符串
**/
public $properties;
/**
* 图片链接地址
**/
public $url;
}
?>