Feature.php 171 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 类目属性
  4. * @author auto create
  5. */
  6. class Feature
  7. {
  8. /**
  9. * 属性键
  10. **/
  11. public $attr_key;
  12. /**
  13. * 属性值
  14. **/
  15. public $attr_value;
  16. }
  17. ?>