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

30 lines
418 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 ItemImg
{
/**
* 图片创建时间 时间格式yyyy-MM-dd HH:mm:ss
**/
public $created;
/**
* 商品图片的id和商品相对应主图id默认为0
**/
public $id;
/**
* 图片放在第几张(多图时可设置)
**/
public $position;
/**
* 图片链接地址
**/
public $url;
}
?>