using SensorHub.Servers.JsonFormat; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SensorHub.CorrRate { public class CorrRateDatasJson : DatasJson { public float accCorrLen { get; set; } //累积腐蚀量 public CorrRateDatasJson(string uptime, float accCorrLen) { this.uptime = uptime; this.accCorrLen = accCorrLen; } } }