MosDeviceTenantDto.php 611 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /**
  3. * 返回数据
  4. * @author auto create
  5. */
  6. class MosDeviceTenantDto
  7. {
  8. /**
  9. * 属性值
  10. **/
  11. public $attributes;
  12. /**
  13. * 是否已删除
  14. **/
  15. public $deleted;
  16. /**
  17. * 行业设备型号
  18. **/
  19. public $global_model_id;
  20. /**
  21. * 设备id
  22. **/
  23. public $id;
  24. /**
  25. * 设备instanceId
  26. **/
  27. public $instance_id;
  28. /**
  29. * 行业设备型号id
  30. **/
  31. public $model_id;
  32. /**
  33. * 厂商设备型号id
  34. **/
  35. public $supplier_model_id;
  36. /**
  37. * 厂商SN
  38. **/
  39. public $supplier_sn;
  40. /**
  41. * 租户id
  42. **/
  43. public $tenant_id;
  44. /**
  45. * 版本
  46. **/
  47. public $version;
  48. }
  49. ?>