using SensorHub.Servers.JsonFormat; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SensorHub.CorrEnv { public class CorrEnvDatasJson : DatasJson { public float envTemp1 { get; set; }//温度值 public float envTemp2 { get; set; } public float envTemp3 { get; set; } public float envTemp4 { get; set; } public List<bool> inundate { get; set; } //浸位信号 public float potential { get; set; } //电位值 public CorrEnvDatasJson(string uptime, float potential, float envTemp1, float envTemp2, float envTemp3, float envTemp4, List<bool> inundate) { this.uptime = uptime; this.potential = potential; this.envTemp1 = envTemp1; this.envTemp2 = envTemp2; this.envTemp3 = envTemp3; this.envTemp4 = envTemp4; this.inundate = inundate; } } }