VisitorNotifyVo.php 395 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * 访客通知模型
  4. * @author auto create
  5. */
  6. class VisitorNotifyVo
  7. {
  8. /**
  9. * 消息内容
  10. **/
  11. public $content;
  12. /**
  13. * 设备ID
  14. **/
  15. public $device_id;
  16. /**
  17. * 接待意见反馈
  18. **/
  19. public $feedback;
  20. /**
  21. * 通知类型
  22. **/
  23. public $notify_type;
  24. /**
  25. * 访客姓名
  26. **/
  27. public $user_name;
  28. /**
  29. * 外部联系ID
  30. **/
  31. public $userid;
  32. }
  33. ?>