22 lines
320 B
PHP
Raw Permalink Normal View History

2024-09-29 15:43:18 +08:00
<?php
/**
* Feature对象列表
目前已有的属性:
若Attr_key为 udsalepropattr_value为1 则允许卖家在改类目新增自定义销售属性,不然为不允许
* @author auto create
*/
class Feature
{
/**
* 属性键
**/
public $attr_key;
/**
* 属性值
**/
public $attr_value;
}
?>