using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace WisdomClient.data { public class AlarmPage { // "records":[ // { // "id":597063729539973100, // "alertTime":"2019-07-06 13:58:06", // "messageType":1, // "snapId":597063729539973100, // "stationId":"MHS_FDC", // "projectId":"MHS02_GC", // "lineId":"MHS04_XL", // "windturbineId":"MG01_39", // "alertValue":1846, // "category1":"windturbine", // "category2":"bj", // "rank":"3", // "stationName":"麻黄山风电场", // "windturbineName":"麻黄山39号风机", // "alertText":"变桨轴箱3心跳", // "modelId":"UP105_2000_S" // }, // Object{...} //], //"total":68742, //"size":2, //"current":1, //"searchCount":true, //"pages":34371 public long total { get; set; } public int size { get; set; } public int current { get; set; } public bool searchCount { get; set; } public int pages { get; set; } public IList records { get; set; } } }