SimpleFormComponentVo.php 176 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 表单列表
  4. * @author auto create
  5. */
  6. class SimpleFormComponentVo
  7. {
  8. /**
  9. * 表单id
  10. **/
  11. public $id;
  12. /**
  13. * 表单名称
  14. **/
  15. public $label;
  16. }
  17. ?>