MqttResult.cs 794 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace IvfTl.Control.Entity.DTO
  7. {
  8. public class MqttResult
  9. {
  10. public string messageId { get; set; }
  11. public int type { get; set; }
  12. public object data { get; set; }
  13. }
  14. public class HouseAutoFocusMqtt
  15. {
  16. public string tlSn { get; set; }
  17. public List<int> houseSnList { get; set; }
  18. }
  19. public class WellAutoFocusMqtt
  20. {
  21. public string tlSn { get; set; }
  22. public List<WellAutoInfo> houseSnList { get; set; }
  23. }
  24. public class WellAutoInfo
  25. {
  26. public int house { get; set; }
  27. public List<int> well { get; set; } = new List<int>();
  28. }
  29. }