using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Dto { /// /// 监测值 /// public class MonitorRecord4SG { /// /// 监测id /// public string MonitorTag { get; set; } /// /// 记录值 /// public double RecordValue { get; set; } } }