AlarmInfo.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace WisdomClient.data
  6. {
  7. public class AlarmInfo
  8. {
  9. //"id":597063729539973100,
  10. //"alertTime":"2019-07-06 13:58:06",
  11. //"messageType":1,
  12. //"snapId":597063729539973100,
  13. //"stationId":"MHS_FDC",
  14. //"projectId":"MHS02_GC",
  15. //"lineId":"MHS04_XL",
  16. //"windturbineId":"MG01_39",
  17. //"alertValue":1846,
  18. //"category1":"windturbine",
  19. //"category2":"bj",
  20. //"rank":"3",
  21. //"stationName":"麻黄山风电场",
  22. //"windturbineName":"麻黄山39号风机",
  23. //"alertText":"变桨轴箱3心跳",
  24. //"modelId":"UP105_2000_S"
  25. public long id { get; set; }
  26. public DateTime alertTime { get; set; }
  27. public int messageType { get; set; }
  28. public long snapId { get; set; }
  29. public string stationId { get; set; }
  30. public string projectId { get; set; }
  31. public string lineId { get; set; }
  32. public string windturbineId { get; set; }
  33. public int alertValue { get; set; }
  34. public string category1 { get; set; }
  35. public string category2 { get; set; }
  36. public string rank { get; set; }
  37. public string stationName { get; set; }
  38. public string windturbineName { get; set; }
  39. public string alertText { get; set; }
  40. public string modelId { get; set; }
  41. }
  42. }