12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Text.Json.Serialization;
- using System.Threading.Tasks;
- namespace NEIntelligentControl2.Models.Datas
- {
-
-
-
- public class TsData
- {
-
-
-
- public long Ts { get; set; }
- public bool? boolValue { get; set; }
- public double? doubleValue { get; set; }
-
-
-
- public double Value
- {
- get
- {
- if (doubleValue != null)
- {
- return doubleValue.Value;
- }
- return boolValue == true ? 1 : 0;
- }
- set { doubleValue = value; }
- }
- }
- }
|