AlarmPage.cs 1.2 KB

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