using SensorHub.Servers.JsonFormat; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SensorHub.MultiLeak { public class MultiLeakFlowDatasJson : DatasJson { public double multiFlow { get; set; } //瞬时流量 public double multiForwardFlow { get; set; } //正向累积流量 public double multiBackwardFlow { get; set; } //负向累积流量 public MultiLeakFlowDatasJson(string uptime, double multiFlow, double multiForwardFlow, double multiBackwardFlow) { this.uptime = uptime; this.multiFlow = multiFlow; this.multiForwardFlow = multiForwardFlow; this.multiBackwardFlow = multiBackwardFlow; } } }