SSPredictModel.cs 916 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Runtime.Serialization;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace GDNXFD.Data
  8. {
  9. [DataContract]
  10. public class SSPredictModel
  11. {
  12. //风机ID
  13. [DataMember]
  14. public string WindturbineId { get; set; }
  15. //对象类型
  16. [DataMember]
  17. public string StationId { get; set; }
  18. //启或停 0-停机 1-启动
  19. [DataMember]
  20. public int SSFlag { get; set; }
  21. //时间
  22. [DataMember]
  23. public DateTime PredictTime { get; set; }
  24. public string Num
  25. {
  26. get
  27. {
  28. string[] arr = WindturbineId.Split('_');
  29. if (arr!= null && arr.Length > 1)
  30. {
  31. return arr[1].Trim();
  32. }
  33. return "";
  34. }
  35. }
  36. }
  37. }