TsData.cs 866 B

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Text.Json.Serialization;
  6. using System.Threading.Tasks;
  7. namespace NEIntelligentControl2.Models.Datas
  8. {
  9. /// <summary>
  10. /// 时序数据
  11. /// </summary>
  12. public class TsData
  13. {
  14. /// <summary>
  15. /// 时间戳
  16. /// </summary>
  17. public long Ts { get; set; }
  18. public bool? boolValue { get; set; }
  19. public double? doubleValue { get; set; }
  20. /// <summary>
  21. /// 值
  22. /// </summary>
  23. public double Value
  24. {
  25. get
  26. {
  27. if (doubleValue != null)
  28. {
  29. return doubleValue.Value;
  30. }
  31. return boolValue == true ? 1 : 0;
  32. }
  33. set { doubleValue = value; }
  34. }
  35. }
  36. }