FormComponentStatVo.php 273 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * 明细里需要统计的字段
  4. * @author auto create
  5. */
  6. class FormComponentStatVo
  7. {
  8. /**
  9. * 组件id
  10. **/
  11. public $id;
  12. /**
  13. * 标题
  14. **/
  15. public $label;
  16. /**
  17. * 单位
  18. **/
  19. public $unit;
  20. /**
  21. * 是否大写
  22. **/
  23. public $upper;
  24. }
  25. ?>