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

30 lines
463 B
PHP
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 ShopCat
{
/**
* 类目编号
**/
public $cid;
/**
* 该类目是否为父类目。即:该类目是否还有子类目
**/
public $is_parent;
/**
* 类目名称
**/
public $name;
/**
* 父类目编号此类目指前台类目值等于0表示此类目为一级类目值不等于0表示此类目有父类目
**/
public $parent_cid;
}
?>