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

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