OpenLabel.php 176 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * labels
  4. * @author auto create
  5. */
  6. class OpenLabel
  7. {
  8. /**
  9. * 标签id
  10. **/
  11. public $id;
  12. /**
  13. * 标签名字
  14. **/
  15. public $name;
  16. }
  17. ?>