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

30 lines
392 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 Shop
{
/**
* 最后修改时间。格式yyyy-MM-dd HH:mm:ss
**/
public $modified;
/**
* 店标地址。返回相对路径,可以用"http://logo.taobao.com/shop-logo"来拼接成绝对路径
**/
public $pic_path;
/**
* 店铺编号
**/
public $sid;
/**
* 店铺标题
**/
public $title;
}
?>