using SensorHub.Servers.JsonFormat; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SensorHub.Liquid { public class LiquidDatasJson : DatasJson { public float level { get; set; } //液位值 public LiquidDatasJson(string uptime, float level) { this.uptime = uptime; this.level = level; } } }