using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 监测子记录录入(振动测点中,子记录的集合json作为记录的DataValue) /// public class AddMonitorSubRecordInput : Model.JsonList { /// /// 信号标识 /// public long SignalID { get; set; } /// /// 原始值 /// public string SrcValue { get; set; } } }