using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Calculation.PlanAna { /// /// 监测值 /// public class MonitorRecord { /// /// 监测id /// public long MonitorId { get; set; } /// /// 记录值 /// public double RecordValue { get; set; } } }