FocusDetailVO.php 359 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * 投屏数据列表
  4. * @author auto create
  5. */
  6. class FocusDetailVO
  7. {
  8. /**
  9. * 投屏时间,单位毫秒
  10. **/
  11. public $create_date;
  12. /**
  13. * 部门全称
  14. **/
  15. public $dept_full_name;
  16. /**
  17. * 投屏设备呢称
  18. **/
  19. public $nick_name;
  20. /**
  21. * 会议室
  22. **/
  23. public $room;
  24. /**
  25. * 用户名
  26. **/
  27. public $user_name;
  28. }
  29. ?>