ComponentPropVo.php 565 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. /**
  3. * 控件属性
  4. * @author auto create
  5. */
  6. class ComponentPropVo
  7. {
  8. /**
  9. * 选项级联属性
  10. **/
  11. public $behavior_linkage;
  12. /**
  13. * 系统别名
  14. **/
  15. public $biz_alias;
  16. /**
  17. * 矩阵表单组件列定义
  18. **/
  19. public $cols;
  20. /**
  21. * 控件id
  22. **/
  23. public $id;
  24. /**
  25. * 标签
  26. **/
  27. public $label;
  28. /**
  29. * 带选项的组件的option
  30. **/
  31. public $options;
  32. /**
  33. * 占位符
  34. **/
  35. public $placeholder;
  36. /**
  37. * 是否必填
  38. **/
  39. public $required;
  40. /**
  41. * 矩阵表单组件行定义
  42. **/
  43. public $rows;
  44. }
  45. ?>