TLSettingInfo.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ivf_tl_Entity.Entity
  7. {
  8. public class TLSettingInfo
  9. {
  10. public string address { get; set; }
  11. public long addressId { get; set; }
  12. public string alarmIp { get; set; }
  13. public string alarmPort { get; set; }
  14. public long id { get; set; }
  15. public string installTime { get; set; }
  16. public string kafkaTopic { get; set; }
  17. public string mqttQueue { get; set; }
  18. /// <summary>
  19. /// 在线状态 0离线 1在线 2解绑 3待初始化
  20. /// </summary>
  21. public int online { get; set; }
  22. public string protocolAddress { get; set; }
  23. public string remark { get; set; }
  24. public string socketIp { get; set; }
  25. public string socketPort { get; set; }
  26. public string softwareVersion { get; set; }
  27. public int state { get; set; }
  28. public string tlName { get; set; }
  29. public string tlSn { get; set; }
  30. public string collectName { get; set; }
  31. public string collectSn { get; set; }
  32. }
  33. }