wangzelong
2022-09-22 a5d1c559861e75db9568cb0a04d23b229aa66fc0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.Application
{
    /// <summary>
    /// 监测子记录录入(振动测点中,子记录的集合json作为记录的DataValue)
    /// </summary>
    public class AddMonitorSubRecordInput : Model.JsonList<AddMonitorSubRecordInput>
    {
 
        /// <summary>
        /// 信号标识
        /// </summary>
        public long SignalID { get; set; }
 
        /// <summary>
        /// 原始值
        /// </summary>
        public string SrcValue { get; set; }
    }
}