using SensorHub.Servers.JsonFormat; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SensorHub.Noise { public class NoiseDatasJson : DatasJson { public double noiseVal { get; set; } //噪声幅度值 public int noiseFreq { get; set; } //噪声频率值 public NoiseDatasJson(string uptime, double noiseVal, int noiseFreq) { this.uptime = uptime; this.noiseVal = noiseVal; this.noiseFreq = noiseFreq; } } }