OpenDeviceVo.php 473 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * 设备列表
  4. * @author auto create
  5. */
  6. class OpenDeviceVo
  7. {
  8. /**
  9. * 设备头像
  10. **/
  11. public $avatar;
  12. /**
  13. * 设备ID
  14. **/
  15. public $device_id;
  16. /**
  17. * 设备MAC地址
  18. **/
  19. public $device_mac;
  20. /**
  21. * 设备SN
  22. **/
  23. public $device_sn;
  24. /**
  25. * 设备类型名称
  26. **/
  27. public $device_type_name;
  28. /**
  29. * 设备昵称
  30. **/
  31. public $nick;
  32. /**
  33. * 设备在线状态{1:在线,0:不在线}
  34. **/
  35. public $on_line_status;
  36. }
  37. ?>