2024-01-26 09:39:36 +08:00

35 lines
487 B
PHP
Executable File
Raw 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;
}
?>