using SensorHub.Servers.JsonFormat; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SensorHub.WellPlus { public class WellPlusDatasJson : DatasJson { public string value { get; set; } //井盖一体机状态 public WellPlusDatasJson(string uptime, string value) { this.uptime = uptime; this.value = value; } } }