12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace WisdomClient.data
- {
- public class AlarmInfo
- {
- //"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"
- public long id { get; set; }
- public DateTime alertTime { get; set; }
- public int messageType { get; set; }
- public long snapId { get; set; }
- public string stationId { get; set; }
- public string projectId { get; set; }
- public string lineId { get; set; }
- public string windturbineId { get; set; }
- public int alertValue { get; set; }
- public string category1 { get; set; }
- public string category2 { get; set; }
- public string rank { get; set; }
- public string stationName { get; set; }
- public string windturbineName { get; set; }
- public string alertText { get; set; }
- public string modelId { get; set; }
- }
- }
|