22 lines
320 B
PHP
22 lines
320 B
PHP
<?php
|
||
|
||
/**
|
||
* Feature对象列表
|
||
目前已有的属性:
|
||
若Attr_key为 udsaleprop,attr_value为1 则允许卖家在改类目新增自定义销售属性,不然为不允许
|
||
* @author auto create
|
||
*/
|
||
class Feature
|
||
{
|
||
|
||
/**
|
||
* 属性键
|
||
**/
|
||
public $attr_key;
|
||
|
||
/**
|
||
* 属性值
|
||
**/
|
||
public $attr_value;
|
||
}
|
||
?>
|